From 2aff3907c587792b98b620ad3e1d32657f8ee782 Mon Sep 17 00:00:00 2001 From: Tom Moor Date: Thu, 4 Jun 2026 09:14:04 -0400 Subject: [PATCH] Make collection title and icon inline editable like documents (#12574) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Collection title/icon editing was gated by `isEditRoute && separateEditMode`, which meant that in the default inline editing mode (separateEditMode off) the title and icon were never editable inline — even though the collection description was. This diverged from documents and from the collection description editor. Align the Header editing gate with documents (DataLoader) and the Overview description editor: `isEditRoute || !separateEditMode`, so title and icon are seamlessly editable inline whenever the user has update permission. Co-authored-by: Claude --- app/scenes/Collection/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/scenes/Collection/index.tsx b/app/scenes/Collection/index.tsx index 40646e22b1..39f2d72554 100644 --- a/app/scenes/Collection/index.tsx +++ b/app/scenes/Collection/index.tsx @@ -179,7 +179,7 @@ const CollectionScene = observer(function CollectionScene_() {