forked from github/plane
refactor: priority icon component (#2132)
This commit is contained in:
committed by
GitHub
parent
991258084e
commit
7bb73b74ba
4
web/types/issues.d.ts
vendored
4
web/types/issues.d.ts
vendored
@@ -102,7 +102,7 @@ export interface IIssue {
|
||||
name: string;
|
||||
parent: string | null;
|
||||
parent_detail: IIssueParent | null;
|
||||
priority: string | null;
|
||||
priority: TIssuePriorities;
|
||||
project: string;
|
||||
project_detail: IProjectLite;
|
||||
sequence_id: number;
|
||||
@@ -294,3 +294,5 @@ export interface IIssueViewProps {
|
||||
properties: Properties;
|
||||
showEmptyGroups: boolean;
|
||||
}
|
||||
|
||||
export type TIssuePriorities = "urgent" | "high" | "medium" | "low" | null;
|
||||
|
||||
Reference in New Issue
Block a user