We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 110224b commit 2a0d281Copy full SHA for 2a0d281
src/composables/node/useNodePricing.ts
@@ -193,9 +193,11 @@ const buildJsonataContext = (
193
const inputGroups: Record<string, number> = {}
194
for (const groupName of rule.depends_on.input_groups) {
195
const prefix = groupName + '.'
196
- inputGroups[groupName] = node.inputs?.filter(
197
- (inp: INodeInputSlot) => inp.name?.startsWith(prefix) && inp.link != null
198
- ).length ?? 0
+ inputGroups[groupName] =
+ node.inputs?.filter(
+ (inp: INodeInputSlot) =>
199
+ inp.name?.startsWith(prefix) && inp.link != null
200
+ ).length ?? 0
201
}
202
203
return { widgets, inputs, inputGroups }
0 commit comments