Added reminaing balance to payments screen BOD-231
This commit is contained in:
@@ -29,9 +29,10 @@ Handlebars.registerHelper("dinerof", function (context, block) {
|
||||
Handlebars.registerHelper("objectKeys", function (obj, block) {
|
||||
var accum = "";
|
||||
|
||||
Object.keys(obj).map((key) => {
|
||||
accum += block.fn({ key, value: obj[key] });
|
||||
});
|
||||
obj &&
|
||||
Object.keys(obj).map((key) => {
|
||||
accum += block.fn({ key, value: obj[key] });
|
||||
});
|
||||
return accum;
|
||||
});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user