mirror of
https://github.com/makeplane/plane.git
synced 2026-05-08 00:49:36 -05:00
fix: state icon (#2678)
This commit is contained in:
committed by
GitHub
parent
25f3a5b2e4
commit
1986c0dfd4
@@ -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[];
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user