forked from github/plane
fix: icon picker not working (#1080)
* fix: icon picker not working * fix: project icon in analytics sidebar
This commit is contained in:
committed by
GitHub
parent
e3a114cd69
commit
7f5fdb9589
21
apps/app/types/projects.d.ts
vendored
21
apps/app/types/projects.d.ts
vendored
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user