From b7223ecdc8ae07dea8ad02dfb52f540e1a2ea179 Mon Sep 17 00:00:00 2001 From: Jeremy Myers Date: Fri, 12 Dec 2025 12:48:27 -0500 Subject: [PATCH] Fix minor layer inputs wrapping issue --- src/components/CollapsibleSection.tsx | 45 ++++++++++++++---------- src/components/styles/layer-selector.css | 3 +- 2 files changed, 28 insertions(+), 20 deletions(-) diff --git a/src/components/CollapsibleSection.tsx b/src/components/CollapsibleSection.tsx index ab22f9e..e3ef094 100644 --- a/src/components/CollapsibleSection.tsx +++ b/src/components/CollapsibleSection.tsx @@ -43,25 +43,32 @@ function CollapsibleSection({ if (expandedState.has(nodeId) || searchText.length > 0) { if ('band_id' in node) { - children = (node as BandResponse).layers.map((layer) => ( - - )); + children = ( +
+ {(node as BandResponse).layers.map((layer) => ( + + ))} +
+ ); } else if ('map_id' in node) { children = (node as MapResponse).bands.map((band) => (