mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-05 20:50:17 -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"
|
:size="inputSize"
|
||||||
:type="getStringInputType"
|
:type="getStringInputType"
|
||||||
:rows="editorRows"
|
:rows="editorRows"
|
||||||
:disabled="isReadOnly"
|
:disabled="
|
||||||
|
isReadOnly ||
|
||||||
|
remoteParameterOptionsLoading ||
|
||||||
|
remoteParameterOptionsLoadingIssues !== null
|
||||||
|
"
|
||||||
:title="displayTitle"
|
:title="displayTitle"
|
||||||
:placeholder="getPlaceholder()"
|
:placeholder="getPlaceholder()"
|
||||||
@update:model-value="(valueChanged($event) as undefined) && onUpdateTextInput($event)"
|
@update:model-value="(valueChanged($event) as undefined) && onUpdateTextInput($event)"
|
||||||
|
|
Loading…
Reference in a new issue