summaryrefslogtreecommitdiffstats
path: root/apps/dashboard/src
diff options
context:
space:
mode:
authorJulien Veyssier <eneiluj@posteo.net>2021-07-11 16:38:06 +0200
committernpmbuildbot-nextcloud[bot] <npmbuildbot-nextcloud[bot]@users.noreply.github.com>2021-07-11 16:17:05 +0000
commit984f3903f5dc9b6e86a283b2406ad99cca91d114 (patch)
tree0d7f7a9a0d8b953406fc49b8a107b96f7c241ced /apps/dashboard/src
parentb4cebc353969649dfd6e2bc16dce70bb0689a387 (diff)
downloadnextcloud-server-984f3903f5dc9b6e86a283b2406ad99cca91d114.tar.gz
nextcloud-server-984f3903f5dc9b6e86a283b2406ad99cca91d114.zip
refs #26113 do not escape display name in dashboard welcome text
Signed-off-by: Julien Veyssier <eneiluj@posteo.net> Signed-off-by: npmbuildbot-nextcloud[bot] <npmbuildbot-nextcloud[bot]@users.noreply.github.com>
Diffstat (limited to 'apps/dashboard/src')
-rw-r--r--apps/dashboard/src/App.vue8
1 files changed, 4 insertions, 4 deletions
diff --git a/apps/dashboard/src/App.vue b/apps/dashboard/src/App.vue
index aa02d48a440..0c59452997c 100644
--- a/apps/dashboard/src/App.vue
+++ b/apps/dashboard/src/App.vue
@@ -180,20 +180,20 @@ export default {
const good = {
morning: {
generic: t('dashboard', 'Good morning'),
- withName: t('dashboard', 'Good morning, {name}', { name: this.displayName }),
+ withName: t('dashboard', 'Good morning, {name}', { name: this.displayName }, undefined, { escape: false }),
},
afternoon: {
generic: t('dashboard', 'Good afternoon'),
- withName: t('dashboard', 'Good afternoon, {name}', { name: this.displayName }),
+ withName: t('dashboard', 'Good afternoon, {name}', { name: this.displayName }, undefined, { escape: false }),
},
evening: {
generic: t('dashboard', 'Good evening'),
- withName: t('dashboard', 'Good evening, {name}', { name: this.displayName }),
+ withName: t('dashboard', 'Good evening, {name}', { name: this.displayName }, undefined, { escape: false }),
},
night: {
// Don't use "Good night" as it's not a greeting
generic: t('dashboard', 'Hello'),
- withName: t('dashboard', 'Hello, {name}', { name: this.displayName }),
+ withName: t('dashboard', 'Hello, {name}', { name: this.displayName }, undefined, { escape: false }),
},
}