diff options
Diffstat (limited to 'apps/comments/src/components/Comment.vue')
-rw-r--r-- | apps/comments/src/components/Comment.vue | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/comments/src/components/Comment.vue b/apps/comments/src/components/Comment.vue index 29469dcf9e9..9301df12a73 100644 --- a/apps/comments/src/components/Comment.vue +++ b/apps/comments/src/components/Comment.vue @@ -91,12 +91,13 @@ <!-- Message content --> <!-- The html is escaped and sanitized before rendering --> - <!-- eslint-disable-next-line vue/no-v-html--> + <!-- eslint-disable vue/no-v-html--> <div v-else :class="{'comment__message--expanded': expanded}" class="comment__message" @click="onExpand" v-html="renderedContent" /> + <!-- eslint-enable vue/no-v-html--> </div> </component> </template> |