mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
fix: label id and assignee id interchange
This commit is contained in:
parent
b7dcbe91dd
commit
b18987bcef
@ -26,8 +26,8 @@ def issue_queryset_grouper(queryset, group_by, sub_group_by):
|
|||||||
}
|
}
|
||||||
|
|
||||||
annotations_map = {
|
annotations_map = {
|
||||||
"label_ids": ("assignees__id", ~Q(assignees__id__isnull=True)),
|
"assignee_ids": ("assignees__id", ~Q(assignees__id__isnull=True)),
|
||||||
"assignee_ids": ("labels__id", ~Q(labels__id__isnull=True)),
|
"label_ids": ("labels__id", ~Q(labels__id__isnull=True)),
|
||||||
"module_ids": (
|
"module_ids": (
|
||||||
"issue_module__module_id",
|
"issue_module__module_id",
|
||||||
~Q(issue_module__module_id__isnull=True),
|
~Q(issue_module__module_id__isnull=True),
|
||||||
|
Loading…
Reference in New Issue
Block a user