mirror of
https://github.com/n8n-io/n8n.git
synced 2025-01-11 12:57:29 -08:00
fix(editor): Fix parameter input glitch when there was an error loading remote options (#10209)
This commit is contained in:
parent
5aba69bcf4
commit
c0e37439a8
|
@ -253,7 +253,11 @@
|
|||
:size="inputSize"
|
||||
:type="getStringInputType"
|
||||
:rows="editorRows"
|
||||
:disabled="isReadOnly"
|
||||
:disabled="
|
||||
isReadOnly ||
|
||||
remoteParameterOptionsLoading ||
|
||||
remoteParameterOptionsLoadingIssues !== null
|
||||
"
|
||||
:title="displayTitle"
|
||||
:placeholder="getPlaceholder()"
|
||||
@update:model-value="(valueChanged($event) as undefined) && onUpdateTextInput($event)"
|
||||
|
|
Loading…
Reference in a new issue