From 97e4d036dcddc077ccca7e970d02032b93bbfc60 Mon Sep 17 00:00:00 2001 From: Matt Hill Date: Sat, 3 May 2025 20:35:13 -0600 Subject: [PATCH] fix adding new registry --- .../portal/routes/marketplace/modals/registry.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/projects/ui/src/app/routes/portal/routes/marketplace/modals/registry.component.ts b/web/projects/ui/src/app/routes/portal/routes/marketplace/modals/registry.component.ts index c40f65dfa..053f61879 100644 --- a/web/projects/ui/src/app/routes/portal/routes/marketplace/modals/registry.component.ts +++ b/web/projects/ui/src/app/routes/portal/routes/marketplace/modals/registry.component.ts @@ -273,7 +273,7 @@ export class MarketplaceRegistryModal { loader.closed = false loader.add(this.loader.open('Saving').subscribe()) - await this.api.setDbValue(['altRegistries', url], name) + await this.api.setDbValue(['registries', url], name) } }