fix flow builder input transforms

This commit is contained in:
Ruben Fiszel
2023-09-08 00:52:05 +02:00
parent 5bf27d6898
commit 8d0569249d
@@ -51,7 +51,7 @@
propertyType = arg.type
}
$: arg?.type !== propertyType && updatePropertyType()
$: arg?.type && arg.type !== propertyType && updatePropertyType()
function getPropertyType(arg: InputTransform | any): 'static' | 'javascript' {
let type: 'static' | 'javascript' = arg?.type ?? 'static'