From c1a328ee639a3339225455d06988aca3b4f5c9b2 Mon Sep 17 00:00:00 2001 From: Azpect3120 <104033825+Azpect3120@users.noreply.github.com> Date: Fri, 9 Aug 2024 13:50:35 -0700 Subject: [PATCH] FIX: Forgot this --- web/static/scripts/tree.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/static/scripts/tree.js b/web/static/scripts/tree.js index 55cb93a..b9265db 100644 --- a/web/static/scripts/tree.js +++ b/web/static/scripts/tree.js @@ -21,5 +21,5 @@ function ToggleFields(id) { function LoadTableQuery(table) { const sql = document.getElementById("sql") sql.value = `SELECT * FROM ${table};`; - sql.dispatchEvent(new Event('input', { bubbles: true })); + sql.dispatchEvent(new Event("input", { bubbles: true })); }