fix: don't use transitions for elements where it is not possible
Resolves https://kolaente.dev/vikunja/frontend/issues/2153
This commit is contained in:
parent
6dc02c45dd
commit
c2d5370e4a
3 changed files with 10 additions and 14 deletions
|
@ -10,9 +10,7 @@
|
||||||
</no-auth-wrapper>
|
</no-auth-wrapper>
|
||||||
<Notification/>
|
<Notification/>
|
||||||
|
|
||||||
<transition name="fade">
|
|
||||||
<keyboard-shortcuts v-if="keyboardShortcutsActive"/>
|
<keyboard-shortcuts v-if="keyboardShortcutsActive"/>
|
||||||
</transition>
|
|
||||||
</ready>
|
</ready>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
|
|
@ -38,7 +38,6 @@
|
||||||
</keep-alive>
|
</keep-alive>
|
||||||
</router-view>
|
</router-view>
|
||||||
|
|
||||||
<transition name="modal">
|
|
||||||
<modal
|
<modal
|
||||||
v-if="currentModal"
|
v-if="currentModal"
|
||||||
@close="closeModal()"
|
@close="closeModal()"
|
||||||
|
@ -47,7 +46,6 @@
|
||||||
>
|
>
|
||||||
<component :is="currentModal"/>
|
<component :is="currentModal"/>
|
||||||
</modal>
|
</modal>
|
||||||
</transition>
|
|
||||||
|
|
||||||
<BaseButton
|
<BaseButton
|
||||||
class="keyboard-shortcuts-button d-print-none"
|
class="keyboard-shortcuts-button d-print-none"
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
<template>
|
<template>
|
||||||
<Teleport to="body">
|
<Teleport to="body">
|
||||||
<!-- FIXME: transition should not be included in the modal -->
|
<!-- FIXME: transition should not be included in the modal -->
|
||||||
<transition name="modal">
|
<transition :name="transitionName">
|
||||||
<section
|
<section
|
||||||
v-if="enabled"
|
v-if="enabled"
|
||||||
class="modal-mask"
|
class="modal-mask"
|
||||||
|
|
Loading…
Reference in a new issue