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

Fix null values in binding panel

This commit is contained in:
Andrew Kingston 2021-01-22 13:36:12 +00:00
parent 0535e3b84a
commit be21cd9e9b

View file

@ -9,7 +9,7 @@
export let bindingDrawer
function addToText(readableBinding) {
value = value + `{{ ${readableBinding} }}`
value = `${value || ""}{{ ${readableBinding} }}`
}
let originalValue = value