chore: correctly resolve merge conflicts and restore drawing tools implementation

This commit is contained in:
DiTus
2026-03-21 12:57:30 +01:00
2 changed files with 2 additions and 2 deletions

View File

@ -394,7 +394,7 @@ export class TradingDashboard {
if (candleDownInput) candleDownInput.value = savedDownColor;
// Calculate initial minMove based on saved precision
const initialMinMove = savedPrecision === 0 ? 1 : Number((1 / Math.pow(10, savedPrecision)).toFixed(savedPrecision));
const initialMinMove = savedPrecision === 0 ? 1 : Number((1 / Math.pow(10, savedPrecision)).toFixed(precision));
this.candleSeries = this.chart.addSeries(LightweightCharts.CandlestickSeries, {
upColor: savedUpColor,