7658-devToTest_2428 #508

Merged
alexm merged 392 commits from 7658-devToTest_2428 into test 2024-07-02 10:38:20 +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"