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 committed Oct 14, 2025
commit 7922aa5715b5953daf144f8ad043e6bd37a7e43b
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