obv 수정
This commit is contained in:
@@ -479,7 +479,10 @@ function normalizeSignalLineIndicatorPlots(
|
||||
const order = ['plot0', 'plot1'];
|
||||
return order.indexOf(a.id) - order.indexOf(b.id);
|
||||
});
|
||||
return { plots: nextPlots, plotVisibility: { ...plotVisibility } };
|
||||
const nextVis = { ...plotVisibility };
|
||||
if (nextVis.plot0 !== false) nextVis.plot0 = true;
|
||||
if (nextVis.plot1 !== false) nextVis.plot1 = true;
|
||||
return { plots: nextPlots, plotVisibility: nextVis };
|
||||
}
|
||||
|
||||
const regSignal = registryPlots.find(p => p.id === 'plot1');
|
||||
|
||||
Reference in New Issue
Block a user