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 {
241241 }
242242 },
243243 computed: {
244- ... mapState (' workflows' , [' workflows ' ]),
244+ ... mapState (' workflows' , [' lookup ' ]),
245245 workflowsTable () {
246- const count = Object .values (this .workflows )
246+ const count = Object .values (this .lookup )
247247 .map (workflow => workflow .status )
248248 .reduce ((acc , state ) => {
249249 acc[state] = (acc[state] || 0 ) + 1
Original file line number Diff line number Diff line change @@ -132,9 +132,9 @@ export default {
132132 }
133133 }),
134134 computed: {
135- ... mapState (' workflows' , [' workflows ' ]),
135+ ... mapState (' workflows' , [' lookup ' ]),
136136 workflowsTable () {
137- return Object .values (this .workflows )
137+ return Object .values (this .lookup )
138138 }
139139 },
140140 methods: {
You can’t perform that action at this time.
0 commit comments