Skip to content

Commit

Permalink
fix: import active class
Browse files Browse the repository at this point in the history
  • Loading branch information
f-necas committed Nov 28, 2023
1 parent a9db8ce commit 14aaa92
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions src/header.ce.vue
Original file line number Diff line number Diff line change
Expand Up @@ -111,9 +111,13 @@ onMounted(() => {
href="/geoserver/web/"
>{{ t('services') }}</a
>
<a v-if="!isAnonymous" class="nav-item" href="/import/">{{
t('datafeeder')
}}</a>
<a
v-if="!isAnonymous"
class="nav-item"
href="/import/"
:class="{ active: props.activeApp === 'import' }"
>{{ t('datafeeder') }}</a
>
<span class="text-gray-400" v-if="isAdmin">|</span>
<div class="admin group inline-block relative" v-if="isAdmin">
<span></span>
Expand Down

0 comments on commit 14aaa92

Please sign in to comment.