Skip to content

Commit 84abd17

Browse files
committed
(fix) use v-show instead of v-if
1 parent 66b4ef0 commit 84abd17

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ChatWindow/MessagesList.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<div
33
class="col-messages"
44
:class="{ 'col-messages-full': !showRoomsList }"
5-
v-if="(isMobile && !showRoomsList) || !isMobile"
5+
v-show="(isMobile && !showRoomsList) || !isMobile"
66
>
77
<div class="room-header app-border-b">
88
<div

0 commit comments

Comments
 (0)