fix: lint errors

This commit is contained in:
2022-05-23 09:52:03 +02:00
parent fea79ea110
commit 6f5969b978
3 changed files with 45 additions and 50 deletions
+3 -3
View File
@@ -6,15 +6,15 @@
</v-card-title>
<v-list>
<v-list-item v-for="item in model" :key="item">
<v-list-item-action v-on:click="toggleIgnore(type, item)">
<v-list-item-action @click="toggleIgnore(type, item)">
<v-tooltip top slot="prepend">
<template v-slot:activator="{ on }">
<template #activator="{ on }">
<v-icon v-on="on">mdi-delete-outline</v-icon>
</template>
<span v-text="$t('filters.remove')" />
</v-tooltip>
</v-list-item-action>
<v-list-item-title v-html="item" />
<v-list-item-titl><span v-html="item" /></v-list-item-titl>
</v-list-item>
</v-list>
</v-card>