fix(editor): Fix multi-select parameters with load options getting cleared (#9324)

This commit is contained in:
Elias Meire
2024-05-08 10:43:04 +02:00
committed by GitHub
parent c8895c540e
commit 0ee4b6c860
2 changed files with 46 additions and 3 deletions

View File

@@ -1187,6 +1187,10 @@ function onUpdateTextInput(value: string) {
}
function valueChanged(value: NodeParameterValueType | {} | Date) {
if (remoteParameterOptionsLoading.value) {
return;
}
if (props.parameter.name === 'nodeCredentialType') {
activeCredentialType.value = value as string;
}