FIX: Forgot this

This commit is contained in:
Azpect3120 2024-08-09 13:50:35 -07:00
parent 9820ecac64
commit c1a328ee63

View File

@ -21,5 +21,5 @@ function ToggleFields(id) {
function LoadTableQuery(table) { function LoadTableQuery(table) {
const sql = document.getElementById("sql") const sql = document.getElementById("sql")
sql.value = `SELECT * FROM ${table};`; sql.value = `SELECT * FROM ${table};`;
sql.dispatchEvent(new Event('input', { bubbles: true })); sql.dispatchEvent(new Event("input", { bubbles: true }));
} }