mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
chore: minor fixes
This commit is contained in:
parent
daa3094911
commit
6a430ed480
@ -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,
|
||||
|
0
web/layouts/app-layout/layout.tsx
Normal file
0
web/layouts/app-layout/layout.tsx
Normal 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[];
|
||||
};
|
||||
} = {};
|
||||
|
Loading…
Reference in New Issue
Block a user