mirror of
https://github.com/UtilitechAS/amsreader-firmware.git
synced 2026-01-19 01:36:49 +00:00
Fixed mouseover label on prices for "tomorrow"
This commit is contained in:
parent
a4b07f4097
commit
2cbe566910
2
lib/SvelteUi/app/dist/index.js
vendored
2
lib/SvelteUi/app/dist/index.js
vendored
File diff suppressed because one or more lines are too long
@ -47,8 +47,10 @@
|
||||
});
|
||||
points.push({
|
||||
label: val >= 0 ? val.toFixed(d) : '',
|
||||
title: val >= 0 ? val.toFixed(2) + ' ' + json.currency : '',
|
||||
value: val >= 0 ? Math.abs(val*100) : 0,
|
||||
label2: val < 0 ? val.toFixed(d) : '',
|
||||
title2: val < 0 ? val.toFixed(2) + ' ' + json.currency : '',
|
||||
value2: val < 0 ? Math.abs(val*100) : 0,
|
||||
color: '#7c3aed'
|
||||
});
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user