Correctly initialize the flowInputStore(#3940)

* fix(frontend): Correctly initialize the flowInputStore for picked scripts/flows

* fix(frontend): Correctly initialize the flowInputStore for picked scripts/flows
This commit is contained in:
Faton Ramadani
2024-06-20 16:24:33 +02:00
committed by GitHub
parent 7007f14a10
commit 4bfda45c72
@@ -62,6 +62,15 @@
flowModule = module
$flowStateStore[module.id] = state
if ($flowInputsStore) {
$flowInputsStore[module?.id] = {
requiredInputsFilled: initRequiredInputFilled(
module?.value,
$flowStateStore[module?.id]?.schema
)
}
}
}
</script>