0
0
Fork 0

refs #6080 fix: remove this.

This commit is contained in:
Alex Moreno 2023-08-18 14:13:49 +02:00
parent 1cdd90ea12
commit 908243141c
1 changed files with 2 additions and 2 deletions

View File

@ -113,7 +113,7 @@ async function togglePinned(item, event) {
<template>
<QList padding class="column-max-width">
<template v-if="$props.source === 'main'">
<template v-if="this.$route?.matched[1]?.name === 'Dashboard'">
<template v-if="$route?.matched[1]?.name === 'Dashboard'">
<QItem class="header">
<QItemSection avatar>
<QIcon name="view_module" />
@ -156,7 +156,7 @@ async function togglePinned(item, event) {
</template>
<template v-for="item in items" :key="item.name">
<template v-if="item.name === this.$route?.matched[1]?.name">
<template v-if="item.name === $route?.matched[1]?.name">
<QItem class="header">
<QItemSection avatar v-if="item.icon">
<QIcon :name="item.icon" />