fix: state icon (#2678)

This commit is contained in:
Aaryan Khandelwal
2023-11-07 16:15:34 +05:30
committed by GitHub
parent 25f3a5b2e4
commit 1986c0dfd4
5 changed files with 11 additions and 19 deletions
+6 -2
View File
@@ -24,7 +24,6 @@ export interface IIssueGroup {
title: TIssueGroupTitle;
color: string;
className: string;
icon: React.FC;
}
export interface IIssue {
@@ -40,7 +39,12 @@ export interface IIssue {
sequence_id: number;
start_date: any;
state: string;
state_detail: any;
state_detail: {
id: string;
name: string;
group: TIssueGroupKey;
color: string;
};
target_date: any;
votes: IVote[];
}