Merge pull request #10831 from YevhenBondarenko/fix/gateway-connectors-config

fixed race condition during adding new gateway connector with default config
This commit is contained in:
Viacheslav Klimov 2024-05-21 11:30:21 +03:00 committed by GitHub
commit d56bc719ac
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -93,8 +93,7 @@ export class AddConnectorDialogComponent extends DialogComponent<AddConnectorDia
this.dialogRef.close(value); this.dialogRef.close(value);
} }
}); });
} } else if (this.connectorForm.valid) {
if (this.connectorForm.valid) {
this.dialogRef.close(value); this.dialogRef.close(value);
} }
} }