iobroker.ebus 3.0.5 → 3.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/io-package.json +2 -2
- package/package.json +1 -1
- package/widgets/ebus.html +2 -2
package/README.md
CHANGED
package/io-package.json
CHANGED
package/package.json
CHANGED
package/widgets/ebus.html
CHANGED
|
@@ -1385,7 +1385,7 @@
|
|
|
1385
1385
|
|
|
1386
1386
|
console.log('noneFormatter for ' + val + " " + typeof val);
|
|
1387
1387
|
|
|
1388
|
-
return
|
|
1388
|
+
return (myval * 1).toFixed(axis.tickDecimals);
|
|
1389
1389
|
}
|
|
1390
1390
|
|
|
1391
1391
|
function degreeFormatter(val, axis) {
|
|
@@ -1400,7 +1400,7 @@
|
|
|
1400
1400
|
|
|
1401
1401
|
console.log('degreeFormatter for ' + val + " " + typeof val);
|
|
1402
1402
|
|
|
1403
|
-
return
|
|
1403
|
+
return (myval * 1).toFixed(axis.tickDecimals) + "°C";
|
|
1404
1404
|
}
|
|
1405
1405
|
|
|
1406
1406
|
function xwhFormatter(val, axis) {
|