Swap Order of SimpleTemplates
All checks were successful
E2E Testing / test (push) Successful in 1m37s

This commit is contained in:
Sebastian Böckelmann 2024-04-13 09:42:37 +02:00
parent 078c23d966
commit 2f00109781
2 changed files with 10 additions and 10 deletions

View File

@ -1,17 +1,17 @@
{ {
"componentName": "SimpleTemplate 1", "componentName": "SimpleTemplate 2",
"componentDescription": "", "componentDescription": "",
"states": [ "states": [
{ {
"initial": false, "initial": false,
"conditions": [], "conditions": [],
"stateLabel": "1", "stateLabel": "A",
"stateDescription": "" "stateDescription": ""
}, },
{ {
"initial": false, "initial": false,
"conditions": [], "conditions": [],
"stateLabel": "2", "stateLabel": "B",
"stateDescription": "" "stateDescription": ""
} }
], ],
@ -19,8 +19,8 @@
{ {
"scriptAccountActions": [], "scriptAccountActions": [],
"scriptAccountConditions": [], "scriptAccountConditions": [],
"startingState": "1", "startingState": "A",
"endingState": "2", "endingState": "B",
"actionMap": {} "actionMap": {}
} }
], ],

View File

@ -1,17 +1,17 @@
{ {
"componentName": "SimpleTemplate 2", "componentName": "SimpleTemplate 1",
"componentDescription": "", "componentDescription": "",
"states": [ "states": [
{ {
"initial": false, "initial": false,
"conditions": [], "conditions": [],
"stateLabel": "A", "stateLabel": "1",
"stateDescription": "" "stateDescription": ""
}, },
{ {
"initial": false, "initial": false,
"conditions": [], "conditions": [],
"stateLabel": "B", "stateLabel": "2",
"stateDescription": "" "stateDescription": ""
} }
], ],
@ -19,8 +19,8 @@
{ {
"scriptAccountActions": [], "scriptAccountActions": [],
"scriptAccountConditions": [], "scriptAccountConditions": [],
"startingState": "A", "startingState": "1",
"endingState": "B", "endingState": "2",
"actionMap": {} "actionMap": {}
} }
], ],