Fixed bug #3425230 - enum data split at space char (more space to edit)
This commit is contained in:
@@ -1857,7 +1857,7 @@ $(document).ready(function() {
|
||||
val = val.substr(1, val.length-2).replace(/''/g, "'").replace(/\\\\/g, '\\').replace(/\\'/g, "'").replace(/'/g, "'");
|
||||
// escape the greater-than symbol
|
||||
val = val.replace(/>/g, ">");
|
||||
$("#enum_editor #values").append("<input type='text' value=" + val + " />");
|
||||
$("#enum_editor #values").append("<input type='text' value='" + val + "' />");
|
||||
}
|
||||
});
|
||||
// So we know which column's data is being edited
|
||||
|
Reference in New Issue
Block a user