Fix
This commit is contained in:
parent
709457477e
commit
3f85514a0a
|
@ -31,7 +31,7 @@
|
||||||
let matchAny = false
|
let matchAny = false
|
||||||
let onEmptyFilter = "all"
|
let onEmptyFilter = "all"
|
||||||
|
|
||||||
$: parseFilters(filters)
|
$: parseFilters(rawFilters)
|
||||||
$: dispatch("change", enrichFilters(rawFilters, matchAny, onEmptyFilter))
|
$: dispatch("change", enrichFilters(rawFilters, matchAny, onEmptyFilter))
|
||||||
|
|
||||||
// Remove field key prefixes and determine which behaviours to use
|
// Remove field key prefixes and determine which behaviours to use
|
||||||
|
@ -79,7 +79,12 @@
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<DrawerContent padding={false}>
|
<DrawerContent padding={false}>
|
||||||
<FilterBuilder bind:filters {schemaFields} {datasource} {allowBindings}>
|
<FilterBuilder
|
||||||
|
bind:filters={rawFilters}
|
||||||
|
{schemaFields}
|
||||||
|
{datasource}
|
||||||
|
{allowBindings}
|
||||||
|
>
|
||||||
<div slot="filteringHeroContent" class="filteringHeroContent">
|
<div slot="filteringHeroContent" class="filteringHeroContent">
|
||||||
<Select
|
<Select
|
||||||
label="Behaviour"
|
label="Behaviour"
|
||||||
|
|
Loading…
Reference in New Issue