Dashticz / dashticz_v2

Alternative dashboard for Domoticz
107 stars 62 forks source link

periods and commas in numbers reversed (2.5.5) #445

Closed gohamstergo closed 5 years ago

gohamstergo commented 5 years ago

On the dashticz page, I'm seeing numbers as "2.345,67" with the period and comma are reversed. Not sure of your country of origin, so maybe thats normal there :) , just hoping for a toggle or something to change numbers to "2,345.67"

Thanks!

lokonli commented 5 years ago

There is.

Add the following two lines to custom.js:

var _THOUSAND_SEPARATOR = ',';
var _DECIMAL_POINT = '.';
gohamstergo commented 5 years ago

thank you!