Merge pull request #17138 from nextcloud/bugfix/noid/workflow
Workflowengine: Fix check listing
This commit is contained in:
commit
1c45c04251
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -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) => {
|
||||
|
|
Loading…
Reference in New Issue