Skip to content

Commit

Permalink
Merge pull request #13920 from nextcloud/fix/13907/out-of-office-caption
Browse files Browse the repository at this point in the history
fix: out of office caption
  • Loading branch information
nickvergessen authored Dec 2, 2024
2 parents f7aab2a + 1048f53 commit 099d03a
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/components/NewMessage/NewMessageAbsenceInfo.vue
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,10 @@ export default {
},

userAbsenceCaption() {
return t('spreed', '{user} is out of office and might not respond.', { user: this.displayName })
return t('spreed', '{user} is out of office and might not respond.', { user: this.displayName }, undefined, {
escape: false,
sanitize: false
})
},

userAbsenceMessage() {
Expand Down

0 comments on commit 099d03a

Please sign in to comment.