File tree 1 file changed +11
-5
lines changed
1 file changed +11
-5
lines changed Original file line number Diff line number Diff line change @@ -89,10 +89,13 @@ class App extends PureComponent {
89
89
const initialState = this . getInitialState ( ) ;
90
90
this . setState ( { ...initialState } ) ;
91
91
} ,
92
- 'workflow:state' : ( workflowState ) => {
93
- if ( this . state . workflowState !== workflowState ) {
94
- this . setState ( { workflowState : workflowState } ) ;
95
- }
92
+ 'workflow:state' : ( state , context ) => {
93
+ this . setState ( {
94
+ workflow : {
95
+ state : state ,
96
+ context : context
97
+ }
98
+ } ) ;
96
99
} ,
97
100
'controller:state' : ( controllerType , controllerState ) => {
98
101
this . setState ( state => ( {
@@ -220,7 +223,10 @@ class App extends PureComponent {
220
223
type : controller . type ,
221
224
state : controller . state
222
225
} ,
223
- workflowState : controller . workflowState ,
226
+ workflow : {
227
+ state : controller . workflow . state ,
228
+ context : controller . workflow . context
229
+ } ,
224
230
machinePosition : { // Machine position
225
231
x : '0.000' ,
226
232
y : '0.000' ,
You can’t perform that action at this time.
0 commit comments