From 46c6767a9074eb38b3e40fe10357c7cca0ab68a1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=BE=9D=E7=91=AA=E8=B2=93?= Date: Fri, 17 Apr 2026 06:56:15 +0800 Subject: [PATCH] Add missing semicolon in journal-entry-account-selector.js constructor --- src/accounting/static/js/journal-entry-account-selector.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/accounting/static/js/journal-entry-account-selector.js b/src/accounting/static/js/journal-entry-account-selector.js index 3e7f753..4f43ea6 100644 --- a/src/accounting/static/js/journal-entry-account-selector.js +++ b/src/accounting/static/js/journal-entry-account-selector.js @@ -90,7 +90,7 @@ class JournalEntryAccountSelector { * @param debitCredit {string} either "debit" or "credit" */ constructor(lineItemEditor, debitCredit) { - this.lineItemEditor = lineItemEditor + this.lineItemEditor = lineItemEditor; this.#debitCredit = debitCredit; const prefix = `accounting-account-selector-${debitCredit}`; this.#query = document.getElementById(`${prefix}-query`);