1
0
Fork 0
mirror of synced 2024-09-30 00:57:16 +13:00

Hide JSON array from filter editor

This commit is contained in:
Andrew Kingston 2021-12-10 10:52:51 +00:00
parent cd0acacb69
commit 488f5b8d97

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