[fix] [minor] round off currency values in grid reports
diff --git a/public/js/account_tree_grid.js b/public/js/account_tree_grid.js
index 02ea389..c779cfa 100644
--- a/public/js/account_tree_grid.js
+++ b/public/js/account_tree_grid.js
@@ -138,7 +138,7 @@
 		$.each(gl, function(i, v) {
 			var posting_date = dateutil.str_to_obj(v.posting_date);
 			var account = me.item_by_name[v.account];
-			me.update_balances(account, posting_date, v)
+			me.update_balances(account, posting_date, v);
 		});
 
 		this.update_groups();