From 1b067aab42f77f19214ce4fad272a7a6f9c5b736 Mon Sep 17 00:00:00 2001 From: Edward Ly Date: Thu, 18 Sep 2025 15:32:26 -0700 Subject: [PATCH] fix(comments): expand long comment on click This is a temporary fix that only applies while the server is still using Vue 2.x (or `@nextcloud/vue` 8.x). Once migrated to Vue 3.x, this fix may be reverted. Signed-off-by: Edward Ly --- apps/comments/src/components/Comment.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/comments/src/components/Comment.vue b/apps/comments/src/components/Comment.vue index 8c7bf862781..970bb444f42 100644 --- a/apps/comments/src/components/Comment.vue +++ b/apps/comments/src/components/Comment.vue @@ -95,7 +95,7 @@ :class="{'comment__message--expanded': expanded}" :text="richContent.message" :arguments="richContent.mentions" - @click="onExpand" /> + @click.native="onExpand" />