Skip to content

Commit c1ec15c

Browse files
committed
SdGSoft:
runned esLint --fix
1 parent 183b7c8 commit c1ec15c

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

  • apps/chaingraph-frontend/src/components/flow/nodes/ChaingraphNode/ports/ObjectPort/components
  • packages/chaingraph-nodes/src/nodes/basic-values

apps/chaingraph-frontend/src/components/flow/nodes/ChaingraphNode/ports/ObjectPort/components/AddPropPopover.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ const typeConfigMap: Record<PortType, IPortConfig> = {
8989
defaultValue: [],
9090
ui: {
9191
hideEditor: false,
92-
allowedTypes: ['string', 'number', 'boolean']
92+
allowedTypes: ['string', 'number', 'boolean'],
9393
},
9494
isMutable: true,
9595
},

packages/chaingraph-nodes/src/nodes/basic-values/array.node.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ class ArrayNode extends BaseNode {
2929
ui: {
3030
hideEditor: false,
3131
addItemFormHidden: false,
32-
allowedTypes: ['string', 'number', 'boolean']
32+
allowedTypes: ['string', 'number', 'boolean'],
3333
},
3434
})
3535
array: any[] = []

0 commit comments

Comments
 (0)