Remove log

This commit is contained in:
Andrew Kingston 2024-10-23 15:07:19 +01:00
parent cb4b7988c5
commit de26d151af
No known key found for this signature in database
2 changed files with 0 additions and 5 deletions

View File

@ -18,18 +18,15 @@
let drawer
$: localFilters = utils.processSearchFilters(filters || [])
$: schemaFields = search.getFields(
$tables.list,
Object.values(schema || {}),
{ allowLinks: true }
)
$: filterCount =
localFilters?.groups?.reduce((acc, group) => {
return (acc += group.filters.filter(filter => filter.field).length)
}, 0) || 0
$: bindings = [
{
type: "context",

View File

@ -7,8 +7,6 @@
const onFilter = e => {
filter.set(e.detail || [])
}
$: console.log($filter)
</script>
{#key $datasource}