Skip to content

Commit 1393d3e

Browse files
committed
(fix) textarea listeners init
1 parent 23d41bf commit 1393d3e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/ChatWindow/Room.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@
163163
<div
164164
ref="roomFooter"
165165
class="vac-room-footer"
166-
v-if="Object.keys(room).length"
166+
v-show="Object.keys(room).length && showFooter"
167167
>
168168
<transition name="vac-slide-up">
169169
<div v-if="messageReply" class="vac-reply-container">
@@ -189,7 +189,7 @@
189189
</div>
190190
</transition>
191191

192-
<div class="vac-box-footer" v-if="showFooter">
192+
<div class="vac-box-footer">
193193
<div class="vac-icon-textarea-left" v-if="showAudio && !imageFile">
194194
<div class="vac-svg-button" @click="recordAudio">
195195
<slot

0 commit comments

Comments
 (0)