From 849f9c2b3e4154402091eb8e8083e176810f97e9 Mon Sep 17 00:00:00 2001 From: Avris Date: Thu, 15 Oct 2020 20:59:41 +0200 Subject: [PATCH] #54 user accounts - hide for now --- components/Header.vue | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/components/Header.vue b/components/Header.vue index ca321cd4..2d1a7a9c 100644 --- a/components/Header.vue +++ b/components/Header.vue @@ -128,14 +128,14 @@ }); } - if (this.config.user.enabled) { - links.push({ - link: '/' + this.config.user.route, - icon: 'user', - text: this.user ? '@' + this.user.username : this.$t('user.header'), - textLong: this.user ? '@' + this.user.username : this.$t('user.headerLong'), - }); - } + // if (this.config.user.enabled) { + // links.push({ + // link: '/' + this.config.user.route, + // icon: 'user', + // text: this.user ? '@' + this.user.username : this.$t('user.header'), + // textLong: this.user ? '@' + this.user.username : this.$t('user.headerLong'), + // }); + // } return links; },