From 2c367703e46b3e187f450676282f1d4241bcc353 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=BE=9D=E7=91=AA=E8=B2=93?= Date: Sun, 26 Feb 2023 11:40:53 +0800 Subject: [PATCH] Removed a debug logging in the JavaScript for the account form. --- src/accounting/static/js/account-form.js | 1 - 1 file changed, 1 deletion(-) diff --git a/src/accounting/static/js/account-form.js b/src/accounting/static/js/account-form.js index 834786d..e7d04ec 100644 --- a/src/accounting/static/js/account-form.js +++ b/src/accounting/static/js/account-form.js @@ -93,7 +93,6 @@ function initializeBaseAccountQuery() { const options = Array.from(document.getElementsByClassName("accounting-base-option")); const queryNoResult = document.getElementById("accounting-base-option-no-result"); query.addEventListener("input", function () { - console.log(query.value); if (query.value === "") { options.forEach(function (option) { option.classList.remove("d-none");