From 6919582f69656733e681e44a142baaecffe4a259 Mon Sep 17 00:00:00 2001 From: Voice Typer User Date: Fri, 6 Feb 2026 16:04:35 -0800 Subject: [PATCH] fix: prevent custom registry org input from deselecting The ImageRegistryConfig component's key included registry.organization, which caused React to remount the component on every keystroke when typing a custom organization name. This destroyed the OrganizationSelector's internal customMode state, causing the input to deselect after each character. Using a stable index-based key preserves component identity during edits. Closes #1094 --- frontend/src/components/resources/build/config.tsx | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/frontend/src/components/resources/build/config.tsx b/frontend/src/components/resources/build/config.tsx index 3fccb8af0..5d182bb8a 100644 --- a/frontend/src/components/resources/build/config.tsx +++ b/frontend/src/components/resources/build/config.tsx @@ -266,12 +266,7 @@ export const BuildConfig = ({ {image_registries?.map((registry, index) => ( -- 2.49.1