fix kaskoPriceLeasePeriod calculation

This commit is contained in:
Chika 2020-11-25 14:37:47 +03:00
parent 86357fe309
commit 652da5ef6d

View File

@ -55,8 +55,9 @@ const computedEffects = {
}
}
},
insKaskoPriceLeasePeriod: () =>
customValues.insKaskoPriceLeasePeriod.call(this).toFixed(2),
insKaskoPriceLeasePeriod() {
return customValues.insKaskoPriceLeasePeriod.call(this).toFixed(2);
},
};
export default computedEffects;