feat: user profile analytics, views and filters (#1698)

* feat: user profile overview

* chore: profile sidebar designed

* feat: user issues filters and view options

* refactor: filters

* refactor: mutation logic

* fix: percentage calculation logic and sidebar shadow
This commit is contained in:
Aaryan Khandelwal 2023-07-28 13:39:42 +05:30 committed by GitHub
parent 8930840a76
commit 10f145f85c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
33 changed files with 2396 additions and 427 deletions

View file

@ -1,9 +1,9 @@
export const STATE_GROUP_COLORS: {
[key: string]: string;
} = {
backlog: "#ced4da",
unstarted: "#26b5ce",
started: "#f7ae59",
cancelled: "#d687ff",
completed: "#09a953",
backlog: "#d9d9d9",
unstarted: "#3f76ff",
started: "#f59e0b",
completed: "#16a34a",
cancelled: "#dc2626",
};