From 623401ca366ef7ce2fb6e3266484969573999fd1 Mon Sep 17 00:00:00 2001 From: Pihkaal Date: Sun, 15 Mar 2026 17:37:18 +0100 Subject: [PATCH] fix(settings/user/color): block interaction if modal is opened --- app/components/Settings/BottomScreen/Menus/User/Color.vue | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/app/components/Settings/BottomScreen/Menus/User/Color.vue b/app/components/Settings/BottomScreen/Menus/User/Color.vue index 1eee4cc..e60880a 100644 --- a/app/components/Settings/BottomScreen/Menus/User/Color.vue +++ b/app/components/Settings/BottomScreen/Menus/User/Color.vue @@ -35,7 +35,9 @@ const animation = reactive({ isIntro: true, isOutro: false, }); -const isAnimating = computed(() => animation.isIntro || animation.isOutro); +const isAnimating = computed( + () => animation.isIntro || animation.isOutro || confirmationModal.isOpen, +); const animateIntro = (): gsap.core.Timeline => { animation.isIntro = true;