mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
fix subGroupKey generation when subGroupId is null
This commit is contained in:
parent
236f0c544a
commit
0af1f9e1f0
@ -1083,7 +1083,7 @@ export class BaseIssuesStore implements IBaseIssuesStore {
|
||||
}
|
||||
|
||||
getGroupKey(groupId?: string, subGroupId?: string) {
|
||||
if (groupId && subGroupId) return `${groupId}_${subGroupId}`;
|
||||
if (groupId && subGroupId && subGroupId !== "null") return `${groupId}_${subGroupId}`;
|
||||
|
||||
if (groupId) return groupId;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user