diff --git a/src/components/Editor/IOEditor/InputValueEditor/FormFields/FormFields.tsx b/src/components/Editor/IOEditor/InputValueEditor/FormFields/FormFields.tsx index b48dbc424..7618e7743 100644 --- a/src/components/Editor/IOEditor/InputValueEditor/FormFields/FormFields.tsx +++ b/src/components/Editor/IOEditor/InputValueEditor/FormFields/FormFields.tsx @@ -100,6 +100,7 @@ const TextField = ({ disabled, inputName, actions, + isDefault = true, }: { inputValue: string; onInputChange: (value: string) => void; @@ -108,22 +109,26 @@ const TextField = ({ disabled: boolean; inputName: string; actions?: FormFieldAction[]; + isDefault?: boolean; }) => ( - - - Use as default - - + isDefault ? ( + + + + + Use as default + + + ) : null } >