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}
))}