From 9a438937da1c1a97e3dcdbdb9ae31c97226c4877 Mon Sep 17 00:00:00 2001 From: Andrea Vos Date: Tue, 18 May 2021 01:01:33 +0200 Subject: [PATCH] [faq] fix missing header link --- components/Header.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/Header.vue b/components/Header.vue index 1261c1b29..24381065d 100644 --- a/components/Header.vue +++ b/components/Header.vue @@ -137,7 +137,7 @@ }); } - if (this.config.faq.enabled && !this.config.links.enabled) { + if (this.config.faq.enabled && !this.config.links.split) { links.push({ link: '/' + this.config.faq.route, icon: 'map-marker-question', @@ -157,7 +157,7 @@ 'blog', 'blogEntry', '/' + this.config.links.mediaRoute, - '/' + this.config.faq.route, + this.config.links.split ? '/' + this.config.faq.route : '', '/' + this.config.people.route, ], });