mirror of
https://github.com/UtilitechAS/amsreader-firmware.git
synced 2026-03-05 19:19:16 +00:00
Fixed mouseover label on prices for "tomorrow"
This commit is contained in:
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'
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user