Skip to content

Commit

Permalink
Add missing indicator in the new footer display
Browse files Browse the repository at this point in the history
  • Loading branch information
Bubka committed Nov 9, 2024
1 parent 42e64f4 commit f8bb907
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion resources/js/layouts/Footer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,8 @@
<!-- admin link -->
<li v-if="user.isAdmin" class="column">
<router-link id="lnkAdmin" :to="{ name: 'admin.appSetup' }" >
{{ $t('admin.admin_panel') }}<span v-if="appSettings.latestRelease && appSettings.checkForUpdate" class="release-flag"></span>
<span v-if="appSettings.latestRelease && appSettings.checkForUpdate" class="release-flag"></span>
{{ $t('admin.admin_panel') }}
</router-link>
</li>
<!-- sign-out button -->
Expand All @@ -76,6 +77,7 @@
</ul>
<!-- email link -->
<button id="btnEmailMenu" @click="showMenu = !showMenu" class="button is-text is-like-text has-text-grey" style="width: 100%;">
<span v-if="appSettings.latestRelease && appSettings.checkForUpdate" class="release-flag"></span>
<span class="mx-2 has-ellipsis">{{ user.email }}</span>
<FontAwesomeIcon v-if="!showMenu" :icon="['fas', 'bars']" class="mr-2" />
<!-- <button v-else class="delete ml-3"></button> -->
Expand Down

0 comments on commit f8bb907

Please sign in to comment.