Skip to content

Commit aa667f8

Browse files
committed
categories
1 parent 33434f4 commit aa667f8

File tree

4 files changed

+4
-1
lines changed

4 files changed

+4
-1
lines changed

libs/web-flow-executor/src/nodes/create-state-value.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ export const getCreateEventStateValueNode: NodeTaskFactory<NodeInfo> = (
140140
},
141141
{
142142
hasTitlebar: false,
143-
category: 'flow-control',
143+
category: 'state-machine',
144144
}
145145
);
146146
};

libs/web-flow-executor/src/nodes/end-node.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ export const getEnd: NodeTaskFactory<NodeInfo> = (
3131
return {
3232
name: 'end-node',
3333
family: 'flow-canvas',
34+
category: 'flow-control',
3435
createVisualNode: (
3536
canvasApp: IFlowCanvasBase<NodeInfo>,
3637
x: number,

libs/web-flow-executor/src/nodes/start-node.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ export const getStart: NodeTaskFactory<NodeInfo> = (
3232
return {
3333
name: 'start-node',
3434
family: 'flow-canvas',
35+
category: 'flow-control',
3536
createVisualNode: (
3637
canvasApp: IFlowCanvasBase<NodeInfo>,
3738
x: number,

libs/web-flow-executor/src/nodes/state-machine-node.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -493,6 +493,7 @@ export const createStateMachineNode = (
493493
name: 'state-machine',
494494
family: 'flow-canvas',
495495
isContainer: true,
496+
category: 'state-machine',
496497
childNodeTasks: ['state', 'state-transition', 'state-compound'],
497498
getConnectionInfo: () => {
498499
if (!input || !output) {

0 commit comments

Comments
 (0)