You've already forked openaccounting-web
mirror of
https://github.com/openaccounting/oa-web.git
synced 2025-12-09 09:01:24 +13:00
fixes #1 new transaction opening balance
This commit is contained in:
committed by
Patrick Nagurny
parent
a791e5deaa
commit
2439aef941
@@ -338,7 +338,7 @@ export class NewTransactionPage {
|
|||||||
});
|
});
|
||||||
|
|
||||||
let firstAccounts = dataWithLabels.slice(0, this.numAccountsShown);
|
let firstAccounts = dataWithLabels.slice(0, this.numAccountsShown);
|
||||||
let nextAccounts = dataWithLabels.slice(this.numAccountsShown);
|
let nextAccounts = dataWithLabels.slice();
|
||||||
|
|
||||||
nextAccounts.sort((a, b) => {
|
nextAccounts.sort((a, b) => {
|
||||||
let aAlpha = a.label.charCodeAt(0) >= 65 && a.label.charCodeAt(0) <= 122;
|
let aAlpha = a.label.charCodeAt(0) >= 65 && a.label.charCodeAt(0) <= 122;
|
||||||
|
|||||||
Reference in New Issue
Block a user