refactor: priority icon component (#2132)

This commit is contained in:
Aaryan Khandelwal
2023-09-11 14:35:58 +05:30
committed by GitHub
parent 991258084e
commit 7bb73b74ba
27 changed files with 117 additions and 95 deletions

View File

@@ -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;