From f02a0b0520bdb3d41a7995b23e49724b78485126 Mon Sep 17 00:00:00 2001 From: R-Hart80 Date: Mon, 11 May 2026 10:39:19 -0300 Subject: [PATCH 1/2] fix: mirror Expand layout in Collapse split-button group The labeled main button now triggers collapse-one-level (conservative) and the icon-only add-on triggers collapse-all, matching the Expand group's convention. Fixes #208. Co-Authored-By: Claude Sonnet 4.6 --- components/editor/shared/EntityTreeToolbar.tsx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/components/editor/shared/EntityTreeToolbar.tsx b/components/editor/shared/EntityTreeToolbar.tsx index 234dec7c..165b2dc8 100644 --- a/components/editor/shared/EntityTreeToolbar.tsx +++ b/components/editor/shared/EntityTreeToolbar.tsx @@ -130,21 +130,21 @@ export function EntityTreeToolbar({ {showCollapseGroup && (
)} From 5896f0b87eab1997ba8d25983098266ddb6e3498 Mon Sep 17 00:00:00 2001 From: R-Hart80 Date: Mon, 11 May 2026 10:44:23 -0300 Subject: [PATCH 2/2] fix: restore readable text in PRCreateModal branch dropdowns on dark theme Added explicit text-slate-900/dark:text-white to both setSourceBranch(e.target.value)} - className="flex-1 rounded-sm border-0 bg-transparent py-1 text-sm focus:outline-hidden focus:ring-0" + className="flex-1 rounded-sm border-0 bg-transparent py-1 text-sm text-slate-900 focus:outline-hidden focus:ring-0 dark:text-white" > {branches.map((branch) => ( - ))} @@ -137,10 +137,10 @@ export function PRCreateModal({