1
0
Fork 0
mirror of synced 2024-07-09 08:16:34 +12:00

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

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))