Skip to content

Commit

Permalink
Merge pull request #230 from 1-alex98/bugfix/#61-remove-transition
Browse files Browse the repository at this point in the history
Remove transition mode out-in
  • Loading branch information
Jazcash committed Aug 31, 2023
2 parents 9ffd6ae + 8a9b592 commit 63d9b24
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions src/renderer/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -28,16 +28,17 @@
<Panel :empty="empty" class="flex-grow">
<Breadcrumbs :class="{ hidden: empty }" />
<router-view v-slot="{ Component, route }">
<template v-if="Component">
<transition mode="out-in" name="slide-left">
<transition name="slide-left">
<!--mode= "out-in" causes bug see https://github.com/beyond-all-reason/bar-lobby/issues/61 add back in once vue fixes underlining issue-->
<template v-if="Component">
<suspense timeout="0">
<component :is="Component" :key="route.path" />
<template #fallback>
<Loader />
</template>
</suspense>
</transition>
</template>
</template>
</transition>
</router-view>
</Panel>
</div>
Expand Down

0 comments on commit 63d9b24

Please sign in to comment.