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" },
|
{ key: "sub_issue", title: "Sub Issue" },
|
||||||
];
|
];
|
||||||
|
|
||||||
|
// TODO: update this later
|
||||||
export const ISSUE_EXTRA_DISPLAY_PROPERTIES = {
|
export const ISSUE_EXTRA_DISPLAY_PROPERTIES = {
|
||||||
list: {
|
list: {
|
||||||
access: true,
|
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: {
|
issues: {
|
||||||
[project_id: string]: {
|
[project_id: string]: {
|
||||||
grouped: {
|
grouped: {
|
||||||
[issueId: string]: IIssue[];
|
[group_id: string]: IIssue[];
|
||||||
|
};
|
||||||
|
groupWithSubGroups: {
|
||||||
|
[group_id: string]: {
|
||||||
|
[sub_group_id: string]: IIssue[];
|
||||||
|
};
|
||||||
};
|
};
|
||||||
ungrouped: IIssue[];
|
ungrouped: IIssue[];
|
||||||
};
|
};
|
||||||
@ -28,6 +33,11 @@ class IssueStore implements IIssueStore {
|
|||||||
grouped: {
|
grouped: {
|
||||||
[issueId: string]: IIssue[];
|
[issueId: string]: IIssue[];
|
||||||
};
|
};
|
||||||
|
groupWithSubGroups: {
|
||||||
|
[group_id: string]: {
|
||||||
|
[sub_group_id: string]: IIssue[];
|
||||||
|
};
|
||||||
|
};
|
||||||
ungrouped: IIssue[];
|
ungrouped: IIssue[];
|
||||||
};
|
};
|
||||||
} = {};
|
} = {};
|
||||||
|
Loading…
Reference in New Issue
Block a user