From 5209708ab2398b7958d3a2a39e6f701dabeb96cb Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Wed, 15 Apr 2026 14:52:49 +0200 Subject: [PATCH] Update App.tsx to display multi-selection summary and selected items details --- src/app/App.tsx | 47 ++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 46 insertions(+), 1 deletion(-) diff --git a/src/app/App.tsx b/src/app/App.tsx index 68351038..6d4662ab 100644 --- a/src/app/App.tsx +++ b/src/app/App.tsx @@ -14704,7 +14704,52 @@ export function App({ store, initialStatusMessage }: AppProps) { - {selectedModelInstance !== null ? ( + {multiSelectionSummary !== null ? ( + <> +
+
Selection Kind
+
{multiSelectionSummary.kindLabel}
+
+ {multiSelectionSummary.count} selected +
+
+ +
+
Active Item
+
{multiSelectionSummary.activeLabel}
+
+ {multiSelectionSummary.activeId} +
+
+ +
+
Selected Items
+
+ Batch transform, duplicate, and delete stay available. + Inline rename remains single-selection only. +
+
+ {multiSelectionSummary.selectedLabels.map((label, index) => ( +
+
+
+ {label} + + {label === multiSelectionSummary.activeLabel + ? "Active" + : "Selected"} + +
+
+
+ ))} +
+
+ + ) : selectedModelInstance !== null ? ( <>
Model Asset