fix(settings/user/color): block interaction if modal is opened
This commit is contained in:
@@ -35,7 +35,9 @@ const animation = reactive({
|
|||||||
isIntro: true,
|
isIntro: true,
|
||||||
isOutro: false,
|
isOutro: false,
|
||||||
});
|
});
|
||||||
const isAnimating = computed(() => animation.isIntro || animation.isOutro);
|
const isAnimating = computed(
|
||||||
|
() => animation.isIntro || animation.isOutro || confirmationModal.isOpen,
|
||||||
|
);
|
||||||
|
|
||||||
const animateIntro = (): gsap.core.Timeline => {
|
const animateIntro = (): gsap.core.Timeline => {
|
||||||
animation.isIntro = true;
|
animation.isIntro = true;
|
||||||
|
|||||||
Reference in New Issue
Block a user