Hi, it is incorrectly reflecting the currency information retrieved from MySQL.

As you can see above, mitcoin is 13.16.

But when we go into operation, it shows as if there are a few more digits.
Heres my function to converting.
    convertMoney: function(money) {
        return currency(money, { symbol: "€", separator: ".", decimal: "," }).format();
    },
    convertChip: function(chip) {
        return currency(chip, { symbol: "∐", separator: ".", decimal: "," }).format();
    },