diff options
Diffstat (limited to 'apps/workflowengine/src/store.js')
-rw-r--r-- | apps/workflowengine/src/store.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/workflowengine/src/store.js b/apps/workflowengine/src/store.js index a322c7fb3ea..ad1a4d3f1bf 100644 --- a/apps/workflowengine/src/store.js +++ b/apps/workflowengine/src/store.js @@ -149,7 +149,7 @@ const store = new Vuex.Store({ */ getChecksForEntity(state) { return (entity) => { - return state.checks + return Object.values(state.checks) .filter((check) => check.supportedEntities.indexOf(entity) > -1 || check.supportedEntities.length === 0) .map((check) => state.plugins.checks[check.id]) .reduce((obj, item) => { |