fix: icon picker not working (#1080)

* fix: icon picker not working

* fix: project icon in analytics sidebar
This commit is contained in:
Aaryan Khandelwal
2023-05-19 16:35:51 +05:30
committed by GitHub
parent e3a114cd69
commit 7f5fdb9589
10 changed files with 158 additions and 71 deletions

View File

@@ -9,22 +9,33 @@ import type {
} from "./";
export interface IProject {
cover_image: string | null;
created_at: Date;
created_by: string;
cover_image: string | null;
cycle_view: boolean;
issue_views_view: boolean;
module_view: boolean;
page_view: boolean;
default_assignee: IUser | string | null;
description: string;
emoji: string | null;
emoji_and_icon:
| string
| {
name: string;
color: string;
}
| null;
estimate: string | null;
icon: string;
icon_prop: {
name: string;
color: string;
} | null;
id: string;
identifier: string;
is_favorite: boolean;
issue_views_view: boolean;
module_view: boolean;
name: string;
network: number;
page_view: boolean;
project_lead: IUser | string | null;
slug: string;
total_cycles: number;