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:52 +00:00
co-authored by renee-png
parent 7b9bc93d7b
commit 422bbae31c
+12
View File
@@ -348,6 +348,18 @@ export function CaseCollectionsTab({
clientId={clientId}
onCreated={load}
/>
{wfCollectionId && (
<ApplyCollectionWorkflowDialog
open={!!wfCollectionId}
onOpenChange={(v) => !v && setWfCollectionId(null)}
collectionId={wfCollectionId}
onApplied={() => {
setWfCollectionId(null);
load();
}}
/>
)}
</div>
);
}