1
0

fix(filters): do not require string for in comparator

This commit is contained in:
kolaente
2024-03-11 14:36:59 +01:00
parent 3b77fff4c9
commit 3896c680d3
2 changed files with 15 additions and 2 deletions

View File

@ -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
})
},