chore: minor fixes

This commit is contained in:
sriram veeraghanta 2023-09-22 12:29:22 +05:30
parent daa3094911
commit 6a430ed480
3 changed files with 12 additions and 1 deletions

View File

@ -158,6 +158,7 @@ export const ISSUE_GANTT_DISPLAY_FILTERS = [
{ key: "sub_issue", title: "Sub Issue" },
];
// TODO: update this later
export const ISSUE_EXTRA_DISPLAY_PROPERTIES = {
list: {
access: true,

View File

View File

@ -9,7 +9,12 @@ export interface IIssueStore {
issues: {
[project_id: string]: {
grouped: {
[issueId: string]: IIssue[];
[group_id: string]: IIssue[];
};
groupWithSubGroups: {
[group_id: string]: {
[sub_group_id: string]: IIssue[];
};
};
ungrouped: IIssue[];
};
@ -28,6 +33,11 @@ class IssueStore implements IIssueStore {
grouped: {
[issueId: string]: IIssue[];
};
groupWithSubGroups: {
[group_id: string]: {
[sub_group_id: string]: IIssue[];
};
};
ungrouped: IIssue[];
};
} = {};