Skip to content

Commit dc6fede

Browse files
committed
fix(inbox-layout): remove unnecessary keep-alive wrapper around router-view component preventing same conversation from being loaded again in different conversation list
1 parent 28dcd6c commit dc6fede

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

frontend/src/layouts/inbox/InboxLayout.vue

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,7 @@
55
</div>
66
<div class="grow">
77
<router-view v-slot="{ Component }">
8-
<keep-alive>
9-
<component :is="Component" />
10-
</keep-alive>
8+
<component :is="Component" />
119
</router-view>
1210
</div>
1311
</div>

0 commit comments

Comments
 (0)