File tree Expand file tree Collapse file tree 4 files changed +7
-3
lines changed Expand file tree Collapse file tree 4 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 49
49
v-if =" !message.deleted && message.replyMessage"
50
50
:message =" message"
51
51
:room-users =" roomUsers"
52
+ :text-formatting =" textFormatting"
52
53
>
53
54
<template v-for =" (i , name ) in $scopedSlots " #[name ]=" data " >
54
55
<slot :name =" name" v-bind =" data" />
Original file line number Diff line number Diff line change 17
17
<format-message
18
18
:content =" message.replyMessage.content"
19
19
:users =" roomUsers"
20
- :text-formatting =" true "
20
+ :text-formatting =" textFormatting "
21
21
:reply =" true"
22
22
>
23
23
<template v-for =" (i , name ) in $scopedSlots " #[name ]=" data " >
@@ -39,6 +39,7 @@ export default {
39
39
40
40
props: {
41
41
message: { type: Object , required: true },
42
+ textFormatting: { type: Boolean , required: true },
42
43
roomUsers: { type: Array , required: true }
43
44
},
44
45
Original file line number Diff line number Diff line change 125
125
<room-message-reply
126
126
:room =" room"
127
127
:message-reply =" messageReply"
128
+ :text-formatting =" textFormatting"
128
129
@reset-message =" resetMessage"
129
130
>
130
131
<template v-for =" (i , name ) in $scopedSlots " #[name ]=" data " >
Original file line number Diff line number Diff line change 19
19
<format-message
20
20
:content =" messageReply.content"
21
21
:users =" room.users"
22
- :text-formatting =" true "
22
+ :text-formatting =" textFormatting "
23
23
:reply =" true"
24
24
>
25
25
<template v-for =" (i , name ) in $scopedSlots " #[name ]=" data " >
@@ -56,7 +56,8 @@ export default {
56
56
57
57
props: {
58
58
room: { type: Object , required: true },
59
- messageReply: { type: Object , default: null }
59
+ messageReply: { type: Object , default: null },
60
+ textFormatting: { type: Boolean , required: true }
60
61
},
61
62
62
63
computed: {
You can’t perform that action at this time.
0 commit comments