Skip to content

Commit 5195e9f

Browse files
review amends
1 parent 6abbdec commit 5195e9f

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

src/services/mock/json/workflows/multi.json

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,6 @@
141141
{
142142
"id": "~user/other/multi/run2//1/foo",
143143
"state": "waiting",
144-
"cyclePoint": "1",
145144
"isHeld": false,
146145
"isQueued": true,
147146
"isRunahead": false,
@@ -159,7 +158,6 @@
159158
{
160159
"id": "~user/other/multi/run2//2/foo",
161160
"state": "waiting",
162-
"cyclePoint": "2",
163161
"isHeld": false,
164162
"isQueued": false,
165163
"isRunahead": false,

src/views/Graph.vue

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,6 @@ fragment EdgeData on Edge {
163163
fragment TaskProxyData on TaskProxy {
164164
id
165165
state
166-
cyclePoint
167166
isHeld
168167
isRunahead
169168
isQueued
@@ -518,7 +517,7 @@ export default {
518517
getCycles (nodes) {
519518
if (!this.groupCycle) return
520519
return nodes.reduce((x, y) => {
521-
(x[y.node.cyclePoint] ||= []).push(y)
520+
(x[y.tokens.cycle] ||= []).push(y)
522521
return x
523522
}, {})
524523
},

0 commit comments

Comments
 (0)