Co-authored-by: renee-png <262607627+renee-png@users.noreply.github.com>
This commit is contained in:
gpt-engineer-app[bot]
2026-04-18 23:49:41 +00:00
co-authored by renee-png
parent 38a9e7c591
commit 7b9bc93d7b
+15 -1
View File
@@ -306,7 +306,21 @@ export function CaseCollectionsTab({
{bal < 0 ? " CR" : ""}
</TableCell>
<TableCell className="text-right">
<ChevronRight className="h-4 w-4 text-muted-foreground inline" />
<div className="flex items-center justify-end gap-1">
<Button
variant="ghost"
size="sm"
className="h-7 px-2"
onClick={(e) => {
e.stopPropagation();
setWfCollectionId(c.id);
}}
title="Apply workflow"
>
<GitFork className="h-3.5 w-3.5" />
</Button>
<ChevronRight className="h-4 w-4 text-muted-foreground inline" />
</div>
</TableCell>
</TableRow>
);