mirror of
https://github.com/makeplane/plane.git
synced 2026-07-11 04:51:55 +02:00
chore: minor fixes
This commit is contained in:
@@ -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[];
|
||||
};
|
||||
} = {};
|
||||
|
||||
Reference in New Issue
Block a user