refactor: priority icon component (#2132)
This commit is contained in:
parent
991258084e
commit
7bb73b74ba
27 changed files with 117 additions and 95 deletions
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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue