Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
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 <[email protected]>
  • Loading branch information
edward-ly authored and AndyScherzinger committed Sep 21, 2025
commit 1b067aab42f77f19214ce4fad272a7a6f9c5b736
2 changes: 1 addition & 1 deletion apps/comments/src/components/Comment.vue
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@
:class="{'comment__message--expanded': expanded}"
:text="richContent.message"
:arguments="richContent.mentions"
@click="onExpand" />
@click.native="onExpand" />
</div>
</component>
</template>
Expand Down
Loading