forked from github/plane
fix: mutation of project detail, removed two identifier validation and added default value for deep checking
This commit is contained in:
8
apps/app/types/projects.d.ts
vendored
8
apps/app/types/projects.d.ts
vendored
@@ -15,3 +15,11 @@ export interface IProject {
|
||||
created_by: string;
|
||||
updated_by: string;
|
||||
}
|
||||
|
||||
type ProjectViewTheme = {
|
||||
collapsed: boolean;
|
||||
issueView: "list" | "kanban" | null;
|
||||
groupByProperty: NestedKeyOf<IIssue> | null;
|
||||
filterIssue: "activeIssue" | "backlogIssue" | null;
|
||||
orderBy: NestedKeyOf<IIssue> | null;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user