diff --git a/web/projects/ui/src/app/apps/portal/routes/system/marketplace/modals/registry.component.ts b/web/projects/ui/src/app/apps/portal/routes/system/marketplace/modals/registry.component.ts index c8dfd2420..332bd8844 100644 --- a/web/projects/ui/src/app/apps/portal/routes/system/marketplace/modals/registry.component.ts +++ b/web/projects/ui/src/app/apps/portal/routes/system/marketplace/modals/registry.component.ts @@ -155,7 +155,7 @@ export class MarketplaceRegistryModal { ) try { - await this.api.setDbValue(['marketplace', 'known-hosts'], filtered) + await this.api.setDbValue(['marketplace', 'knownHosts'], filtered) } catch (e: any) { this.errorService.handleError(e) } finally { @@ -173,7 +173,7 @@ export class MarketplaceRegistryModal { loader.add(this.loader.open('Changing Registry...').subscribe()) try { - await this.api.setDbValue(['marketplace', 'selected-url'], url) + await this.api.setDbValue(['marketplace', 'selectedUrl'], url) } catch (e: any) { this.errorService.handleError(e) } finally { @@ -218,7 +218,7 @@ export class MarketplaceRegistryModal { loader.closed = false loader.add(this.loader.open('Saving...').subscribe()) - await this.api.setDbValue(['marketplace', 'known-hosts', url], { name }) + await this.api.setDbValue(['marketplace', 'knownHosts', url], { name }) } }