Skip to content

Commit 32f6186

Browse files
committed
fix(ui): fix button disabled state in BizApplyNodeConfigForm.InternalIdentifierPicker
1 parent c04338a commit 32f6186

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ui/src/components/workflow/designer/forms/BizApplyNodeConfigForm.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -854,7 +854,7 @@ const InternalIdentifierPicker = memo(({ disabled, onSelect }: { disabled?: bool
854854
))}
855855
</div>
856856
<div className="mt-4 flex items-center justify-end gap-4">
857-
<Button disabled={disabled} icon={<IconArrowRight size="1.25em" />} iconPlacement="end" type="primary" onClick={handleContinueClick}>
857+
<Button disabled={!value || disabled} icon={<IconArrowRight size="1.25em" />} iconPlacement="end" type="primary" onClick={handleContinueClick}>
858858
{t("workflow_node.apply.form.identifier.continue.button")}
859859
</Button>
860860
</div>

0 commit comments

Comments
 (0)