mirror of
https://github.com/danbulant/mysqlExporter
synced 2026-06-24 17:31:52 +00:00
Fix checkbox
This commit is contained in:
parent
225222e511
commit
a6b1a39a0f
1 changed files with 2 additions and 2 deletions
|
|
@ -204,7 +204,7 @@
|
||||||
case "null":
|
case "null":
|
||||||
let cb = document.createElement("input");
|
let cb = document.createElement("input");
|
||||||
cb.type = "checkbox";
|
cb.type = "checkbox";
|
||||||
cb.value = (column[field] === "YES" ? 1 : 0);
|
cb.checked = column[field] === "YES";
|
||||||
cb.disabled = true;
|
cb.disabled = true;
|
||||||
column[field] = cb;
|
column[field] = cb;
|
||||||
case "extra":
|
case "extra":
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue