mirror of
https://gitlab.dit.htwk-leipzig.de/htwk-software/htwkalender.git
synced 2025-07-16 17:48:49 +02:00
Merge branch '31-performance-optimization' into 'development'
31 hotfix href links missing in menubar See merge request htwk-software/htwkalender!14
This commit is contained in:
@ -108,6 +108,19 @@ function handleDarkModeToggled(isDarkVar: boolean) {
|
||||
<span class="ml-2 p-menuitem-label">{{ item.label }}</span>
|
||||
</a>
|
||||
</router-link>
|
||||
<a
|
||||
v-else-if="item.url"
|
||||
:class="
|
||||
$route.path.includes(item.info)
|
||||
? 'flex align-items-center active'
|
||||
: 'flex align-items-center'
|
||||
"
|
||||
v-bind="props.action"
|
||||
:href="item.url"
|
||||
>
|
||||
<span :class="item.icon" />
|
||||
<span class="ml-2 p-menuitem-label">{{ item.label }}</span>
|
||||
</a>
|
||||
<span
|
||||
v-else
|
||||
:class="
|
||||
|
Reference in New Issue
Block a user