Fix template slot notation

This commit is contained in:
Wolfgang Huß 2022-11-16 14:14:47 +01:00
parent 3a968361db
commit 8234615505
2 changed files with 2 additions and 2 deletions

View File

@ -3,7 +3,7 @@
<a href="#" slot="default" slot-scope="{ toggleMenu }" @click.prevent="toggleMenu()"> <a href="#" slot="default" slot-scope="{ toggleMenu }" @click.prevent="toggleMenu()">
<ds-text bold size="large">{{ $t('admin.categories.name') }}</ds-text> <ds-text bold size="large">{{ $t('admin.categories.name') }}</ds-text>
</a> </a>
<template slot="popover"> <template #popover>
<div class="category-menu-options"> <div class="category-menu-options">
<h2 class="title">{{ $t('filter-menu.filter-by') }}</h2> <h2 class="title">{{ $t('filter-menu.filter-by') }}</h2>
<categories-filter v-if="categoriesActive" /> <categories-filter v-if="categoriesActive" />

View File

@ -10,7 +10,7 @@
> >
<base-icon class="dropdown-arrow" name="angle-down" /> <base-icon class="dropdown-arrow" name="angle-down" />
</base-button> </base-button>
<template slot="popover"> <template #popover>
<div class="filter-menu-options"> <div class="filter-menu-options">
<h2 class="title">{{ $t('filter-menu.filter-by') }}</h2> <h2 class="title">{{ $t('filter-menu.filter-by') }}</h2>
<following-filter /> <following-filter />