We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6889965 commit 1db4a7eCopy full SHA for 1db4a7e
src/firefly/js/visualize/ui/ExpandedOptionsPopup.jsx
@@ -35,7 +35,7 @@ function ExpandedOptionsPanel ({plotViewAry}) {
35
const expandedIds= getExpandedViewerItemIds(getMultiViewRoot());
36
var enabledStr= loadedPv.reduce( (s,pv) => {
37
if (!expandedIds.includes(pv.plotId)) return s;
38
- return s ? `${s},${pv.plotId}` : pv.plotId;
+ return s ? `${pv.plotId},${s}` : pv.plotId;
39
},'');
40
41
return (
0 commit comments