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