mirror of
https://github.com/overte-org/overte.git
synced 2025-04-23 13:33:26 +02:00
Merge pull request #12461 from birarda/bug/delete-add-rule
fix badging for changes in tables
This commit is contained in:
commit
e83a933f50
1 changed files with 5 additions and 5 deletions
|
@ -682,11 +682,11 @@ function makeTableHiddenInputs(setting, initialValues, categoryValue) {
|
|||
} else {
|
||||
html +=
|
||||
"<td " + (col.hidden ? "style='display: none;'" : "") + " class='" + Settings.DATA_COL_CLASS + "' " +
|
||||
"name='" + col.name + "'>" +
|
||||
"<input type='text' style='display: none;' class='form-control' placeholder='" + (col.placeholder ? col.placeholder : "") + "' " +
|
||||
"value='" + (defaultValue || "") + "' data-default='" + (defaultValue || "") + "'" +
|
||||
(col.readonly ? " readonly" : "") + ">" +
|
||||
"</td>";
|
||||
"name='" + col.name + "'>" +
|
||||
"<input type='text' style='display: none;' class='form-control " + Settings.TRIGGER_CHANGE_CLASS +
|
||||
"' placeholder='" + (col.placeholder ? col.placeholder : "") + "' " +
|
||||
"value='" + (defaultValue || "") + "' data-default='" + (defaultValue || "") + "'" +
|
||||
(col.readonly ? " readonly" : "") + ">" + "</td>";
|
||||
}
|
||||
})
|
||||
|
||||
|
|
Loading…
Reference in a new issue