From a9806e83661835b039d96619cb2073ad38d995a3 Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Wed, 15 Apr 2026 14:57:54 +0200 Subject: [PATCH] Update App.tsx to use selectedItems and display item IDs --- src/app/App.tsx | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/src/app/App.tsx b/src/app/App.tsx index 98743791..bea78022 100644 --- a/src/app/App.tsx +++ b/src/app/App.tsx @@ -14811,20 +14811,23 @@ export function App({ store, initialStatusMessage }: AppProps) { Inline rename remains single-selection only.
- {multiSelectionSummary.selectedLabels.map((label, index) => ( + {multiSelectionSummary.selectedItems.map((item) => (
- {label} + + {item.label} + - {label === multiSelectionSummary.activeLabel + {item.id === multiSelectionSummary.activeId ? "Active" : "Selected"}
+ {item.id}
))}