Skip to content

Commit 8e69b38

Browse files
committed
feat: null as fallback for settings
1 parent 3b4123c commit 8e69b38

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

src/packages/ce/src/flow/services/Flow.service.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -137,8 +137,7 @@ export class FlowService extends ReactiveArrayService<FlowView, FlowDependencies
137137
type: flow?.type?.id!,
138138
settings: flow?.settings?.nodes?.map(setting => {
139139
return {
140-
//flowSettingIdentifier: setting?.flowSettingIdentifier!,
141-
value: setting?.value!,
140+
value: setting?.value ?? null,
142141
}
143142
}) ?? [],
144143
signature: flow?.signature,

0 commit comments

Comments
 (0)