Fix tax displayed rounding

This commit is contained in:
Hillel Coren 2018-02-15 13:33:11 +02:00
parent 9721491072
commit 7e50e538bc

View File

@ -20,7 +20,7 @@ class TaxRateDatatable extends EntityDatatable
[ [
'rate', 'rate',
function ($model) { function ($model) {
return $model->rate . '%'; return ($model->rate + 0) . '%';
}, },
], ],
[ [