Hide JSON array from filter editor

This commit is contained in:
Andrew Kingston 2021-12-10 10:52:51 +00:00
parent 9708539631
commit 891538eaa4
1 changed files with 1 additions and 1 deletions

View File

@ -21,7 +21,7 @@
export let panel = ClientBindingPanel
export let allowBindings = true
const BannedTypes = ["link", "attachment", "formula", "json"]
const BannedTypes = ["link", "attachment", "formula", "json", "jsonarray"]
$: fieldOptions = (schemaFields ?? [])
.filter(field => !BannedTypes.includes(field.type))