"disappearing" y-axis bugfix

This commit is contained in:
Tim
2024-03-29 23:45:35 -04:00
parent bb1bc3d966
commit 5aecfe9b56
2 changed files with 2 additions and 2 deletions

View File

@@ -298,7 +298,7 @@ export const DataFeed = {
timezone: 'Etc/UTC',
exchange: symbolItem.exchange,
minmov: 0.000000000000000001,
pricescale: 0.000000000000000001,
pricescale: null,
variable_tick_size: VARIABLE_TICK_SIZE,
has_intraday: true, // Added to allow less than one day to work
visible_plots_set: 'ohlc',

View File

@@ -149,7 +149,7 @@ export function inversionPreference(chainId, base, quote) {
}
prefs.inverted[key] = preferInverted
}
console.log('inversion preference', base, quote, prefs.inverted[key], inputInverted)
// console.log('inversion preference', base, quote, prefs.inverted[key], inputInverted)
return prefs.inverted[key] !== inputInverted
}