mirror of
https://github.com/clearml/clearml-server
synced 2025-05-31 18:38:56 +00:00
Fix regression with archive tasks display
This commit is contained in:
parent
81b93e6811
commit
2263e7cc1e
@ -147,7 +147,8 @@ class GetMixin(PropsMixin):
|
|||||||
}
|
}
|
||||||
default_operator = Q.OR
|
default_operator = Q.OR
|
||||||
mongo_modifiers = {
|
mongo_modifiers = {
|
||||||
Q.AND: {True: "all", False: "not__all"},
|
# not_all modifier currently not supported due to the backwards compatibility
|
||||||
|
Q.AND: {True: "all", False: "nin"},
|
||||||
Q.OR: {True: "in", False: "nin"},
|
Q.OR: {True: "in", False: "nin"},
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user