Refactored case edit pane's jsx and methods

This commit is contained in:
Takeshi Kimata
2024-03-17 17:32:19 +09:00
parent aea08e9c80
commit d94af046c0
9 changed files with 613 additions and 570 deletions

View File

@@ -270,20 +270,6 @@ export default function FoldersLayout({
</Listbox>
</div>
<div className="flex-grow w-full">
<div className="border-b-1 dark:border-neutral-700 w-full p-3 flex items-center justify-between">
<h3 className="font-bold">
{selectedFolder ? selectedFolder.name : "Select Folder"}
</h3>
<Button
startContent={<Plus size={16} />}
size="sm"
color="primary"
isDisabled={!selectedFolder}
onClick={() => console.log("create")}
>
New Test Case
</Button>
</div>
{children}
</div>