diff --git a/frontend/app/projects/[projectId]/runs/[runId]/TestCaseSelector.tsx b/frontend/app/projects/[projectId]/runs/[runId]/TestCaseSelector.tsx
index e4f37b2..209495b 100644
--- a/frontend/app/projects/[projectId]/runs/[runId]/TestCaseSelector.tsx
+++ b/frontend/app/projects/[projectId]/runs/[runId]/TestCaseSelector.tsx
@@ -7,7 +7,6 @@ import {
TableRow,
TableCell,
Button,
- Chip,
DropdownTrigger,
Dropdown,
DropdownMenu,
@@ -23,7 +22,7 @@ import {
Circle,
CircleCheck,
CircleX,
- CircleSlash2
+ CircleSlash2,
} from "lucide-react";
import { priorities, testRunCaseStatus } from "@/config/selection";
import { CaseType } from "@/types/case";
@@ -69,11 +68,11 @@ export default function TestCaseSelector({
}, [sortDescriptor, cases]);
const notIncludedCaseClass = "text-neutral-200 dark:text-neutral-600";
- const chipBaseClass = "border-none gap-1 text-default-600";
+ const chipBaseClass = "flex items-center text-default-600";
const renderStatusIcon = (uid: string) => {
if (uid === "untested") {
- return ;
+ return ;
} else if (uid === "passed") {
return ;
} else if (uid === "failed") {
@@ -90,16 +89,18 @@ export default function TestCaseSelector({
switch (columnKey) {
case "priority":
return (
-
- {priorities[cellValue].name}
-
+
+
{priorities[cellValue].name}
+
);
case "runStatus":
return (
@@ -115,7 +116,9 @@ export default function TestCaseSelector({
}
endContent={isIncluded && }
>
- {isIncluded && testRunCaseStatus[cellValue].name}
+
+ {isIncluded && testRunCaseStatus[cellValue].name}
+
diff --git a/frontend/config/selection.ts b/frontend/config/selection.ts
index a9cea56..0aac229 100644
--- a/frontend/config/selection.ts
+++ b/frontend/config/selection.ts
@@ -1,8 +1,8 @@
const priorities = [
- { name: "Critical", uid: "critical", color: "danger" },
- { name: "High", uid: "high", color: "warning" },
- { name: "Medium", uid: "medium", color: "secondary" },
- { name: "Low", uid: "low", color: "success" },
+ { name: "Critical", uid: "critical", color: "#d00002" },
+ { name: "High", uid: "high", color: "#ee6b4e" },
+ { name: "Medium", uid: "medium", color: "#fccb69" },
+ { name: "Low", uid: "low", color: "#0b62e8" },
];
const testTypes = [