mirror of
https://github.com/Tria-plc/edr-platform.git
synced 2026-08-29 16:28:12 +00:00
fix conflict
This commit is contained in:
@@ -39,7 +39,7 @@ export const formatCell = (value: unknown, format?: ColumnFormat): ReactNode =>
|
||||
const active = Boolean(value);
|
||||
return (
|
||||
<Badge
|
||||
color={active ? "green" : "gray"}
|
||||
color={active ? "edr-green" : "gray"}
|
||||
variant={active ? "filled" : "light"}
|
||||
size="sm"
|
||||
radius="md"
|
||||
@@ -53,7 +53,7 @@ export const formatCell = (value: unknown, format?: ColumnFormat): ReactNode =>
|
||||
const status = String(value);
|
||||
const color =
|
||||
status === "LIVE"
|
||||
? "green"
|
||||
? "edr-green"
|
||||
: status === "DRAFT"
|
||||
? "yellow"
|
||||
: status === "PENDING_APPROVAL"
|
||||
|
||||
Reference in New Issue
Block a user