quota block price/size formatting

pull/12238/head
rubenmoya 7 years ago
parent 575c435d08
commit 325809a2ac

@ -71,10 +71,10 @@ var getNoCreditMessage = function (quota, type, configModel, userModel) {
module.exports = {
make: function (data, configModel, userModel) {
var blockPrice = (data.quotaInfo.blockPrice / 100);
var blockPrice = Utils.formatNumber(data.quotaInfo.blockPrice / 100);
var estimation = data.estimation;
var formattedEstimation = Utils.formatNumber(estimation);
var blockSize = data.quotaInfo.blockSize;
var blockSize = Utils.formatNumber(data.quotaInfo.blockSize);
var body = '';
var type = '';
var link;

Loading…
Cancel
Save