Skip to content

Commit 2a0d281

Browse files
committed
[automated] Apply ESLint and Prettier fixes
1 parent 110224b commit 2a0d281

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

src/composables/node/useNodePricing.ts

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -193,9 +193,11 @@ const buildJsonataContext = (
193193
const inputGroups: Record<string, number> = {}
194194
for (const groupName of rule.depends_on.input_groups) {
195195
const prefix = groupName + '.'
196-
inputGroups[groupName] = node.inputs?.filter(
197-
(inp: INodeInputSlot) => inp.name?.startsWith(prefix) && inp.link != null
198-
).length ?? 0
196+
inputGroups[groupName] =
197+
node.inputs?.filter(
198+
(inp: INodeInputSlot) =>
199+
inp.name?.startsWith(prefix) && inp.link != null
200+
).length ?? 0
199201
}
200202

201203
return { widgets, inputs, inputGroups }

0 commit comments

Comments
 (0)