generated from 8iq/nodejs-hackathon-boilerplate-starter-kit
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
del new statuses, rename QueryStatuses to StatusesEnum.
- Loading branch information
Showing
8 changed files
with
31 additions
and
43 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,7 @@ | ||
export enum QueryStatuses { | ||
export enum StatusesEnum { | ||
SENT = 'SENT', | ||
ACCEPTED = 'ACCEPTED', | ||
IN_PROGRESS = 'IN_PROGRESS', | ||
DECLINED = 'DECLINED', | ||
CANCELED = 'CANCELED', | ||
} | ||
|
||
export enum TicketStatuses { | ||
NEW = 'NEW', | ||
OPENED = 'OPENED', | ||
CLOSED = 'CLOSED', | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 5 additions & 3 deletions
8
apps/schools/domains/ticket/components/ticketList/styles/styles.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
export const NEW_FILTER_COLOR = '#EB3468' | ||
export const OPENED_FILTER_COLOR = '#2F54EB' | ||
export const CLOSED_FILTER_COLOR = '#52C41A' | ||
export const ACCEPTED_FILTER_COLOR = '#B7EB8F' | ||
export const IN_PROGRESS_FILTER_COLOR = '#2F54EB' | ||
export const SENT_FILTER_COLOR = '#FF9500' | ||
export const CANCELED_FILTER_COLOR = '#EB3468' | ||
export const DECLINED_FILTER_COLOR = '#FFA39E' |