From c0e70b4c62cad2001b14cedfee8097a8ff0cfda5 Mon Sep 17 00:00:00 2001 From: Matchu Date: Mon, 15 Mar 2021 08:11:10 -0700 Subject: [PATCH] Preview + save UI for bulk-add tool still not wired up tho! --- .../support/AllItemLayersSupportModal.js | 25 +++++++++++++------ 1 file changed, 18 insertions(+), 7 deletions(-) diff --git a/src/app/WardrobePage/support/AllItemLayersSupportModal.js b/src/app/WardrobePage/support/AllItemLayersSupportModal.js index 601cded..ea7b828 100644 --- a/src/app/WardrobePage/support/AllItemLayersSupportModal.js +++ b/src/app/WardrobePage/support/AllItemLayersSupportModal.js @@ -261,13 +261,24 @@ function AllItemLayersSupportModalContent({ item, bulkAddProposal }) { }); return ( - - {itemAppearances.map((itemAppearance) => ( - - - - ))} - + + {bulkAddProposalData && ( + + Previewing bulk-add changes + + + + )} + + {itemAppearances.map((itemAppearance) => ( + + + + ))} + + ); }