PMCORE-2726: 'Search by Task Name' filter does not list Tasks according to 'Process Name' filter

code style

code style 2

code style 3
This commit is contained in:
Rodrigo Quelca
2021-01-19 14:39:56 +00:00
parent 496a9cd9c6
commit d74a28abc3
4 changed files with 17 additions and 6 deletions

View File

@@ -72,11 +72,12 @@ export let filters = {
/**
* Service to get the users list
*/
taskList(query) {
taskList(params) {
return Api.get({
service: "TASKS",
params: {
text: query,
text: params.query,
proId: params.proId
},
keys: {},
});