Skip to content

Commit 9e011ef

Browse files
committed
(fix) missing video message content
1 parent 436187a commit 9e011ef

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

src/ChatWindow/Message/Message.vue

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,17 @@
100100
<video width="100%" height="100%" controls>
101101
<source :src="message.file.url" />
102102
</video>
103+
<format-message
104+
:content="message.content"
105+
:users="roomUsers"
106+
:text-formatting="textFormatting"
107+
:link-options="linkOptions"
108+
@open-user-tag="openUserTag"
109+
>
110+
<template v-for="(i, name) in $scopedSlots" #[name]="data">
111+
<slot :name="name" v-bind="data" />
112+
</template>
113+
</format-message>
103114
</div>
104115

105116
<audio-player

0 commit comments

Comments
 (0)