feat: refs #8602 add remove functionality for tag filters in EntryBuys component

This commit is contained in:
Pablo Natek 2025-03-11 11:18:48 +01:00
parent 639a7bc072
commit 5f20ff4df0
1 changed files with 2 additions and 0 deletions
src/pages/Entry/Card

View File

@ -685,11 +685,13 @@ onMounted(() => {
v-model="tag1Filter"
:label="t('Tag')"
@keyup.enter="tag1 = tag1Filter"
@remove="tag1 = null"
/>
<VnInput
v-model="tag2Filter"
:label="t('Tag')"
@keyup.enter="tag2 = tag2Filter"
@remove="tag2 = null"
/>
</VnRow>
</template>