Skip to content

Commit

Permalink
Remove transition mode out-in
Browse files Browse the repository at this point in the history
  • Loading branch information
1-alex98 committed Jun 16, 2023
1 parent b29c049 commit 8a9b592
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 8a9b592

Please sign in to comment.