fix(filters): do not require string for in comparator
This commit is contained in:
@ -63,7 +63,7 @@ watchEffect(
|
||||
}
|
||||
|
||||
const taskService = new TaskService()
|
||||
taskService.getAll({}, {filter: `project in '${childProjectIds.value.join(',')}'`}).then(() => {
|
||||
taskService.getAll({}, {filter: `project in ${childProjectIds.value.join(',')}`}).then(() => {
|
||||
totalTasks.value = taskService.totalPages * taskService.resultCount
|
||||
})
|
||||
},
|
||||
|
Reference in New Issue
Block a user