limit price display fix

This commit is contained in:
tim
2024-10-11 17:32:47 -04:00
parent 5b23864c2e
commit 43a11b057b
5 changed files with 21 additions and 21 deletions

View File

@@ -138,7 +138,7 @@ export function initWidget(el) {
enabled_features: ['saveload_separate_drawings_storage'],
drawings_access: {type: 'white', tools: [],}, // show no tools
custom_themes: tvCustomThemes,
theme: 'dark',
theme: useStore().theme,
});
// debug dump all events

View File

@@ -174,7 +174,7 @@ function buildSymbolIndex() {
// return str
// }
function invertedDefault(tokenAddrA, tokenAddrB) {
export function invertedDefault(tokenAddrA, tokenAddrB) {
// lower priority is more important (earlier in the list)
const a = tokenMap[tokenAddrA];
const b = tokenMap[tokenAddrB];