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 4949 v-if =" !message.deleted && message.replyMessage"
5050 :message =" message"
5151 :room-users =" roomUsers"
52+ :text-formatting =" textFormatting"
5253 >
5354 <template v-for =" (i , name ) in $scopedSlots " #[name ]=" data " >
5455 <slot :name =" name" v-bind =" data" />
Original file line number Diff line number Diff line change 1717 <format-message
1818 :content =" message.replyMessage.content"
1919 :users =" roomUsers"
20- :text-formatting =" true "
20+ :text-formatting =" textFormatting "
2121 :reply =" true"
2222 >
2323 <template v-for =" (i , name ) in $scopedSlots " #[name ]=" data " >
@@ -39,6 +39,7 @@ export default {
3939
4040 props: {
4141 message: { type: Object , required: true },
42+ textFormatting: { type: Boolean , required: true },
4243 roomUsers: { type: Array , required: true }
4344 },
4445
Original file line number Diff line number Diff line change 125125 <room-message-reply
126126 :room =" room"
127127 :message-reply =" messageReply"
128+ :text-formatting =" textFormatting"
128129 @reset-message =" resetMessage"
129130 >
130131 <template v-for =" (i , name ) in $scopedSlots " #[name ]=" data " >
Original file line number Diff line number Diff line change 1919 <format-message
2020 :content =" messageReply.content"
2121 :users =" room.users"
22- :text-formatting =" true "
22+ :text-formatting =" textFormatting "
2323 :reply =" true"
2424 >
2525 <template v-for =" (i , name ) in $scopedSlots " #[name ]=" data " >
@@ -56,7 +56,8 @@ export default {
5656
5757 props: {
5858 room: { type: Object , required: true },
59- messageReply: { type: Object , default: null }
59+ messageReply: { type: Object , default: null },
60+ textFormatting: { type: Boolean , required: true }
6061 },
6162
6263 computed: {
You can’t perform that action at this time.
0 commit comments