Browse Source

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

fixed race condition during adding new gateway connector with default config
pull/10836/head
Viacheslav Klimov 2 years ago
committed by GitHub
parent
commit
d56bc719ac
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 3
      ui-ngx/src/app/modules/home/components/widget/lib/gateway/dialog/add-connector-dialog.component.ts

3
ui-ngx/src/app/modules/home/components/widget/lib/gateway/dialog/add-connector-dialog.component.ts

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

Loading…
Cancel
Save