1
0

fix(filter): correctly filter for buckets

This commit is contained in:
kolaente
2023-11-22 10:33:03 +01:00
parent ef1cc9720c
commit eebfee73d3
5 changed files with 57 additions and 22 deletions

View File

@ -105,7 +105,7 @@ func getTaskFilterOptsFromCollection(tf *TaskCollection) (opts *taskSearchOption
filter: tf.Filter,
}
opts.filters, err = getTaskFiltersByCollections(tf)
opts.filters, err = getTaskFiltersFromFilterString(tf.Filter)
return opts, err
}