diff options
author | Sophie Zhang <sophie_zhang@brown.edu> | 2023-07-11 13:30:51 -0400 |
---|---|---|
committer | Sophie Zhang <sophie_zhang@brown.edu> | 2023-07-11 13:30:51 -0400 |
commit | c1df53a7616ccbb9afad2deaf3026e70f3e974b4 (patch) | |
tree | ff3ed78bf5de39a31eeaad73d9a44d373aae0185 /src/client/util/reportManager/reportManagerUtils.ts | |
parent | b1f189ffc7dfe558d5895c8f0cb103ab3e5c17d7 (diff) |
starting connecting to new upload endpoint and standardized displaying media
Diffstat (limited to 'src/client/util/reportManager/reportManagerUtils.ts')
-rw-r--r-- | src/client/util/reportManager/reportManagerUtils.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/util/reportManager/reportManagerUtils.ts b/src/client/util/reportManager/reportManagerUtils.ts index 3c919856a..51517e80d 100644 --- a/src/client/util/reportManager/reportManagerUtils.ts +++ b/src/client/util/reportManager/reportManagerUtils.ts @@ -22,7 +22,7 @@ export enum BugType { export const priorityColors: { [key: string]: string[] } = { 'priority-low': ['#d4e0ff', '#000000'], 'priority-medium': ['#6a91f6', '#ffffff'], - 'priority-high': ['#4476f7', '#ffffff'], + 'priority-high': ['#0f4ce7', '#ffffff'], }; // [bgColor, color] @@ -42,7 +42,7 @@ export const getLabelColors = (label: string): string[] => { } else if (bugSet.has(label as BugType)) { return bugColors[label]; } - return ['#347bff', '#ffffff']; + return ['#0f73f6', '#ffffff']; }; export interface FileData { |