dont allow links in automation filter builder

This commit is contained in:
Peter Clement 2024-11-20 14:32:15 +00:00
parent 668df22176
commit 7fe41ef949
1 changed files with 2 additions and 1 deletions

View File

@ -94,6 +94,7 @@
$: memoBlock.set(block)
$: filters = lookForFilters(schemaProperties)
$: console.log(filters)
$: filterCount =
filters?.groups?.reduce((acc, group) => {
acc = acc += group?.filters?.length || 0
@ -114,7 +115,7 @@
$: schemaFields = search.getFields(
$tables.list,
Object.values(schema || {}),
{ allowLinks: true }
{ allowLinks: false }
)
$: queryLimit = tableId?.includes("datasource") ? "∞" : "1000"
$: isTrigger = $memoBlock?.type === AutomationStepType.TRIGGER