Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/polls.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authordartcafe <github@dartcafe.de>2022-06-27 21:13:24 +0300
committerdartcafe <github@dartcafe.de>2022-06-27 21:13:24 +0300
commit47a54c1218930fba39f9f48e07800a29abc1b3a9 (patch)
tree16ff0ada2a08e03591dcf3aab2c3d8e98195df3f /src
parente892f1609360985a724ca46306e5d34db1b245ff (diff)
add lint command
Signed-off-by: dartcafe <github@dartcafe.de>
Diffstat (limited to 'src')
-rw-r--r--src/js/components/Comments/CommentItem.vue3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/js/components/Comments/CommentItem.vue b/src/js/components/Comments/CommentItem.vue
index cdc8a1e9..ca081d72 100644
--- a/src/js/components/Comments/CommentItem.vue
+++ b/src/js/components/Comments/CommentItem.vue
@@ -29,9 +29,12 @@
<div v-for="(subComment) in comment.subComments"
:key="subComment.id"
class="comment-item__subcomment">
+ <!-- eslint-disable vue/no-v-html -->
<span class="comment-item__comment"
v-html="linkify(subComment.comment)">
{{ subComment.comment }}
+ <!-- eslint-enable vue/no-v-html -->
+
</span>
<ActionDelete v-if="comment.user.userId === acl.userId || acl.isOwner"
:title="t('polls', 'Delete comment')"