From 227b4761b85094d4937b03c23a7820dab7d07d3e Mon Sep 17 00:00:00 2001 From: "Jan C. Borchardt" Date: Tue, 11 Aug 2020 10:10:24 +0200 Subject: [PATCH] Dashboard: Fix wording issue on greetings Signed-off-by: Jan C. Borchardt --- apps/dashboard/src/App.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/dashboard/src/App.vue b/apps/dashboard/src/App.vue index 66e4b96c583..3c4644df47b 100644 --- a/apps/dashboard/src/App.vue +++ b/apps/dashboard/src/App.vue @@ -125,7 +125,7 @@ export default { if (time > 5) { return { text: shouldShowName ? t('dashboard', 'Good morning, {name}', { name: this.displayName }) : t('dashboard', 'Good morning') } } - return { text: shouldShowName ? t('dashboard', 'Good night, {name}', { name: this.displayName }) : t('dashboard', 'Have a night owl') } + return { text: shouldShowName ? t('dashboard', 'Good night, {name}', { name: this.displayName }) : t('dashboard', 'Good night') } }, isActive() { return (panel) => this.layout.indexOf(panel.id) > -1 -- 2.39.5