1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-08-05 13:55:21 +02:00

fix(registry): sync config on change [EE-5460] (#8955)

This commit is contained in:
Chaim Lev-Ari 2023-05-30 10:47:44 +07:00 committed by GitHub
parent d803d5f821
commit 61b568a738
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 36 additions and 16 deletions

View file

@ -18,7 +18,8 @@ export function RegistryViewModel(data) {
}
export function RegistryManagementConfigurationDefaultModel(registry) {
this.Authentication = false;
this.Authentication = registry.Authentication;
this.Username = registry.Username;
this.Password = '';
this.TLS = false;
this.TLSSkipVerify = false;