Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
Fix unfolding rich messages
Signed-off-by: Joas Schilling <[email protected]>
  • Loading branch information
nickvergessen committed Aug 1, 2022
commit 37efbbec27a65338490df488e6419cd6af284ba8
4 changes: 2 additions & 2 deletions js/notifications-main.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion js/notifications-main.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/Components/Notification.vue
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ export default {
},

onClickMessage(e) {
if (e.target.classList.contains('rich-text--wrapper')) {
if (e.target.closest('.rich-text--wrapper')) {
// Vue RichText
this.showFullMessage = !this.showFullMessage
} else if (!this.messageRich && !!this.message) {
Expand Down