Skip to content

Commit 1db4a7e

Browse files
committed
IRSA-685: fixing tile reorder
1 parent 6889965 commit 1db4a7e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/firefly/js/visualize/ui/ExpandedOptionsPopup.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ function ExpandedOptionsPanel ({plotViewAry}) {
3535
const expandedIds= getExpandedViewerItemIds(getMultiViewRoot());
3636
var enabledStr= loadedPv.reduce( (s,pv) => {
3737
if (!expandedIds.includes(pv.plotId)) return s;
38-
return s ? `${s},${pv.plotId}` : pv.plotId;
38+
return s ? `${pv.plotId},${s}` : pv.plotId;
3939
},'');
4040

4141
return (

0 commit comments

Comments
 (0)