7691-testToMaster #537

Merged
alexm merged 395 commits from 7691-testToMaster into master 2024-07-09 05:39:56 +00:00
1 changed files with 2 additions and 3 deletions
Showing only changes of commit 128904970b - Show all commits
src/components/ui

View File

@ -35,7 +35,7 @@ const $props = defineProps({
},
hiddenTags: {
type: Array,
default: () => [],
default: () => ['filter'],
},
customTags: {
type: Array,
@ -158,7 +158,7 @@ const customTags = computed(() =>
async function remove(key) {
delete params.value[key];
delete params.value.filter?.where[key];
delete params.value.filter?.where?.[key];
params.value[key] = undefined;
await arrayData.applyFilter({ params: params.value });
emit('remove', key);
@ -223,7 +223,6 @@ function formatValue(value) {
{{ t(`No filters applied`) }}
</div>
<div>
{{ tags }}
<VnFilterPanelChip
v-for="chip of tags"
:key="chip.label"