Compare commits

...

1 Commits

Author SHA1 Message Date
Ruben Fiszel
a0e8f7c3e1 rawUiImprovements 2025-04-20 11:36:45 +02:00

View File

@@ -149,7 +149,7 @@
fields: Record<string, any>
): Promise<[string, TriggerableV2] | undefined> {
const staticInputs = collectStaticFields(fields)
const allowUserResources: string[] = Object.entries(fields)
const allowUserResources: string[] = Object.entries(fields ?? {})
.map(([k, v]) => {
return v['allowUserResources'] ? k : undefined
})