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 CHANGED
@@ -55,7 +55,7 @@ Attention: command in datapoint ebus.0.cmd is deleted after executing of command
55
55
 
56
56
  ## Changelog
57
57
 
58
- ### 3.0.5 (2022-08-19)
58
+ ### 3.0.6 (2022-08-19)
59
59
  * (René) bug fix in tooltip in wizard
60
60
 
61
61
  ### 3.0.4 (2022-08-18)
package/io-package.json CHANGED
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "common": {
3
3
  "name": "ebus",
4
- "version": "3.0.5",
4
+ "version": "3.0.6",
5
5
  "news": {
6
- "3.0.5": {
6
+ "3.0.6": {
7
7
  "en": "widget with tooltip",
8
8
  "de": "Widget mit Tooltip",
9
9
  "ru": "виджет с подсказкой",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "iobroker.ebus",
3
- "version": "3.0.5",
3
+ "version": "3.0.6",
4
4
  "description": "ioBroker ebus Adapter",
5
5
  "author": {
6
6
  "name": "René G.",
package/widgets/ebus.html CHANGED
@@ -1385,7 +1385,7 @@
1385
1385
 
1386
1386
  console.log('noneFormatter for ' + val + " " + typeof val);
1387
1387
 
1388
- return val.toFixed(axis.tickDecimals);
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 val.toFixed(axis.tickDecimals) + "°C";
1403
+ return (myval * 1).toFixed(axis.tickDecimals) + "°C";
1404
1404
  }
1405
1405
 
1406
1406
  function xwhFormatter(val, axis) {