Skip to content

Commit bc36001

Browse files
committed
feat: don't disable test transformation button and allow queuing more jobs
Former-commit-id: 11bfd3370937d816cfb2e00a8dc57e1a3e8c3074 Former-commit-id: de19c51769477cac909bcc393f5f5fed3c559fae
1 parent 4551735 commit bc36001

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

apps/app/src/routes/(config)/transformations/-components/RenderTransformationTest.svelte

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,7 @@
4747
{ input, transformationId: transformation.id, toastId: nanoid() },
4848
{ onSuccess: (o) => (output = o) },
4949
)}
50-
disabled={transformer.transformInput.isPending ||
51-
!input.trim() ||
52-
transformation.steps.length === 0}
50+
disabled={!input.trim() || transformation.steps.length === 0}
5351
class="w-full"
5452
>
5553
{#if transformer.transformInput.isPending}

0 commit comments

Comments
 (0)