mirror of
https://github.com/danbulant/mysqlExporter
synced 2026-06-20 23:21:28 +00:00
Smaller extra column
This commit is contained in:
parent
997905d994
commit
79370f5749
1 changed files with 6 additions and 1 deletions
|
|
@ -74,7 +74,7 @@
|
|||
width: 30px;
|
||||
}
|
||||
|
||||
.default {
|
||||
.default, .extra {
|
||||
width: 50px;
|
||||
}
|
||||
</style>
|
||||
|
|
@ -172,6 +172,11 @@
|
|||
cb.value = (column[field] === "YES");
|
||||
cb.disabled = true;
|
||||
column[field] = cb;
|
||||
case "extra":
|
||||
if(column[field] === "auto_increment") {
|
||||
column[field] = "AI";
|
||||
td.title = "Auto increment";
|
||||
}
|
||||
}
|
||||
|
||||
if (column[field]) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue