dont allow links in automation filter builder
This commit is contained in:
parent
668df22176
commit
7fe41ef949
|
@ -94,6 +94,7 @@
|
||||||
$: memoBlock.set(block)
|
$: memoBlock.set(block)
|
||||||
|
|
||||||
$: filters = lookForFilters(schemaProperties)
|
$: filters = lookForFilters(schemaProperties)
|
||||||
|
$: console.log(filters)
|
||||||
$: filterCount =
|
$: filterCount =
|
||||||
filters?.groups?.reduce((acc, group) => {
|
filters?.groups?.reduce((acc, group) => {
|
||||||
acc = acc += group?.filters?.length || 0
|
acc = acc += group?.filters?.length || 0
|
||||||
|
@ -114,7 +115,7 @@
|
||||||
$: schemaFields = search.getFields(
|
$: schemaFields = search.getFields(
|
||||||
$tables.list,
|
$tables.list,
|
||||||
Object.values(schema || {}),
|
Object.values(schema || {}),
|
||||||
{ allowLinks: true }
|
{ allowLinks: false }
|
||||||
)
|
)
|
||||||
$: queryLimit = tableId?.includes("datasource") ? "∞" : "1000"
|
$: queryLimit = tableId?.includes("datasource") ? "∞" : "1000"
|
||||||
$: isTrigger = $memoBlock?.type === AutomationStepType.TRIGGER
|
$: isTrigger = $memoBlock?.type === AutomationStepType.TRIGGER
|
||||||
|
|
Loading…
Reference in New Issue