From 71e83b1d0858316fa8ca3fc201628d7e35cccc0c Mon Sep 17 00:00:00 2001
From: Takeshi Kimata <117462761+kimatata@users.noreply.github.com>
Date: Wed, 24 Apr 2024 22:42:22 +0900
Subject: [PATCH] Test run editor UI
---
.../runs/[runId]/TestCaseSelector.tsx | 25 +++++++++++--------
frontend/config/selection.ts | 8 +++---
2 files changed, 18 insertions(+), 15 deletions(-)
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