Fix Quickstart-Button shown for non-admin users (#2245)

Follow-up for #2209.

Signed-off-by: Florian Hotze <florianh_dev@icloud.com>
pull/2247/head
Florian Hotze 2023-12-30 00:32:14 +01:00 committed by GitHub
parent 3e5018b973
commit 0f35e0ef55
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -15,7 +15,7 @@
<component :is="overviewPage.component" v-if="overviewPage" v-show="!inChatSession" :context="overviewPageContext" :class="{notready: !ready}" @command="onCommand" />
<div class="empty-overview" v-else-if="!inChatSession">
<empty-state-placeholder icon="house" title="overview.title" text="overview.text" />
<f7-row v-if="$f7.width < 1280" class="display-flex justify-content-center">
<f7-row v-if="!$store.getters.isAdmin || $f7.width < 1280" class="display-flex justify-content-center">
<f7-button large fill color="blue" external :href="`${documentationLinkPrefix}link/docs`" target="_blank" v-t="'home.overview.button.documentation'" />
<span style="width: 8px" />
<f7-button large color="blue" external :href="`${documentationLinkPrefix}link/tutorial`" target="_blank" v-t="'home.overview.button.tutorial'" />