Skip to content

Commit c5cde3b

Browse files
committed
next: don't allow deletion if in progress.
1 parent cdf69dc commit c5cde3b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Exceptionless.Web/ClientApp/src/lib/features/projects/components/table/project-actions-cell.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
<Configure />
5757
Download & Configure Client
5858
</DropdownMenu.Item>
59-
<DropdownMenu.Item onclick={() => (showRemoveProjectDialog = true)}>
59+
<DropdownMenu.Item onclick={() => (showRemoveProjectDialog = true)} disabled={removeProject.isPending}>
6060
<X />
6161
Delete
6262
</DropdownMenu.Item>

0 commit comments

Comments
 (0)