File tree Expand file tree Collapse file tree 2 files changed +1
-4
lines changed
services/mock/json/workflows Expand file tree Collapse file tree 2 files changed +1
-4
lines changed Original file line number Diff line number Diff line change 141
141
{
142
142
"id" : " ~user/other/multi/run2//1/foo" ,
143
143
"state" : " waiting" ,
144
- "cyclePoint" : " 1" ,
145
144
"isHeld" : false ,
146
145
"isQueued" : true ,
147
146
"isRunahead" : false ,
159
158
{
160
159
"id" : " ~user/other/multi/run2//2/foo" ,
161
160
"state" : " waiting" ,
162
- "cyclePoint" : " 2" ,
163
161
"isHeld" : false ,
164
162
"isQueued" : false ,
165
163
"isRunahead" : false ,
Original file line number Diff line number Diff line change @@ -163,7 +163,6 @@ fragment EdgeData on Edge {
163
163
fragment TaskProxyData on TaskProxy {
164
164
id
165
165
state
166
- cyclePoint
167
166
isHeld
168
167
isRunahead
169
168
isQueued
@@ -518,7 +517,7 @@ export default {
518
517
getCycles (nodes ) {
519
518
if (! this .groupCycle ) return
520
519
return nodes .reduce ((x , y ) => {
521
- (x[y .node . cyclePoint ] || = []).push (y)
520
+ (x[y .tokens . cycle ] || = []).push (y)
522
521
return x
523
522
}, {})
524
523
},
You can’t perform that action at this time.
0 commit comments