Skip to content

Commit 24982cc

Browse files
committed
(test) fix travis build failure
1 parent 882a025 commit 24982cc

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/ChatWindow/FormatMessage.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,14 +43,14 @@ export default {
4343
props: {
4444
content: { type: [String, Number], required: true },
4545
deleted: { type: Boolean, default: false },
46-
formatLinks: { type: Boolean, default: true },
46+
linkify: { type: Boolean, default: true },
4747
singleLine: { type: Boolean, default: false },
4848
textFormatting: { type: Boolean, required: true }
4949
},
5050
5151
computed: {
5252
linkifiedMessage() {
53-
return formatString(this.content, this.formatLinks)
53+
return formatString(this.content, this.linkify)
5454
}
5555
},
5656

src/ChatWindow/RoomsList.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@
105105
v-else-if="room.lastMessage"
106106
:content="getLastMessage(room)"
107107
:deleted="!!room.lastMessage.deleted && !typingUsers(room)"
108-
:format-links="false"
108+
:linkify="false"
109109
:text-formatting="textFormatting"
110110
:single-line="true"
111111
>

0 commit comments

Comments
 (0)