fix white space

This commit is contained in:
Rimian Perkins 2019-12-17 17:43:30 +11:00
parent 52db93ecd8
commit bf4fdd18ef
1 changed files with 1 additions and 1 deletions

View File

@ -4,7 +4,7 @@ import { ajax } from "discourse/lib/ajax";
const UserPayment = EmberObject.extend({
@computed("amount")
amountDollars(amount){
amountDollars(amount) {
return parseFloat(amount / 100).toFixed(2);
}
});