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 checking for links finally
Signed-off-by: Joas Schilling <[email protected]>
Signed-off-by: nextcloud-command <[email protected]>
  • Loading branch information
nickvergessen authored and nextcloud-command committed Sep 20, 2022
commit e9e24dd0b2bf979cba12c48305ac2d80c2e0ff5b
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 @@ -185,7 +185,7 @@ export default {

let parametersHaveLink = false
Object.keys(this.subjectRichParameters).forEach(p => {
if (p.link) {
if (this.subjectRichParameters[p].link) {
parametersHaveLink = true
}
})
Expand Down