1
0
Fork 0
mirror of synced 2024-09-29 16:51:33 +13:00

Fix crash when an Input exists as a possible datasource

This commit is contained in:
Andrew Kingston 2020-10-28 19:32:46 +00:00
parent 54f8a3d36f
commit 6cd428a4c8

View file

@ -39,7 +39,7 @@
})
$: links = bindableProperties
.filter(x => x.fieldSchema.type === "link")
.filter(x => x.fieldSchema?.type === "link")
.map(property => ({
label: property.readableBinding,
fieldName: property.fieldSchema.name,