You've already forked openaccounting-web
forked from cybercinch/openaccounting-web
Merge pull request #3 from pnagurny/bug/new-tx-opening-balance
fixes #1 new transaction opening balance
This commit is contained in:
@@ -338,7 +338,7 @@ export class NewTransactionPage {
|
||||
});
|
||||
|
||||
let firstAccounts = dataWithLabels.slice(0, this.numAccountsShown);
|
||||
let nextAccounts = dataWithLabels.slice(this.numAccountsShown);
|
||||
let nextAccounts = dataWithLabels.slice();
|
||||
|
||||
nextAccounts.sort((a, b) => {
|
||||
let aAlpha = a.label.charCodeAt(0) >= 65 && a.label.charCodeAt(0) <= 122;
|
||||
|
||||
Reference in New Issue
Block a user