File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -241,9 +241,9 @@ export default {
241
241
}
242
242
},
243
243
computed: {
244
- ... mapState (' workflows' , [' workflows ' ]),
244
+ ... mapState (' workflows' , [' lookup ' ]),
245
245
workflowsTable () {
246
- const count = Object .values (this .workflows )
246
+ const count = Object .values (this .lookup )
247
247
.map (workflow => workflow .status )
248
248
.reduce ((acc , state ) => {
249
249
acc[state] = (acc[state] || 0 ) + 1
Original file line number Diff line number Diff line change @@ -132,9 +132,9 @@ export default {
132
132
}
133
133
}),
134
134
computed: {
135
- ... mapState (' workflows' , [' workflows ' ]),
135
+ ... mapState (' workflows' , [' lookup ' ]),
136
136
workflowsTable () {
137
- return Object .values (this .workflows )
137
+ return Object .values (this .lookup )
138
138
}
139
139
},
140
140
methods: {
You can’t perform that action at this time.
0 commit comments