diff options
author | John Molakvoæ <skjnldsv@users.noreply.github.com> | 2023-08-02 15:36:42 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-02 15:36:42 +0200 |
commit | 8fa9607f0fb2259be624fe29fb8ab9e0b163c285 (patch) | |
tree | fac713e8ba6a7bd83a8066d44a81c76d44622481 /apps/comments/src/components/Comment.vue | |
parent | 114cad3812839afa00f4144b7029ccf882bbea75 (diff) | |
parent | 650312580f330bdf43cce4fb91d9fd721ed115f0 (diff) | |
download | nextcloud-server-8fa9607f0fb2259be624fe29fb8ab9e0b163c285.tar.gz nextcloud-server-8fa9607f0fb2259be624fe29fb8ab9e0b163c285.zip |
Merge pull request #39540 from nextcloud/feat/migrate-nc-vue-8
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> |