fix: flow steps appears in all static inputs

This commit is contained in:
Ruben Fiszel
2023-09-24 19:03:29 +02:00
parent eefedf5ed1
commit aba0b94c25
@@ -15,7 +15,7 @@
$: scriptModules = dfs($flowStore.value.modules, (x) => x)
.map((x) => [x.value, x] as [FlowModuleValue, FlowModule])
.filter((x) => x[0].type == 'script' || x[0].type == 'rawscript') as [
.filter((x) => x[0].type == 'script' || x[0].type == 'rawscript' || x[0].type == 'flow') as [
PathScript | RawScript,
FlowModule
][]