Infolog: Fix changing details/no-details overwrote a JS function, causing errors

This commit is contained in:
nathangray 2020-06-15 11:41:42 -06:00
parent e996b2c0cf
commit d0eed9b7a5
2 changed files with 2 additions and 2 deletions

View File

@ -249,7 +249,7 @@ var InfologApp = /** @class */ (function (_super) {
nm.dataview.getColumnMgr().columns[i].set_width(colData[i].width);
nm.dataview.getColumnMgr().columns[i].set_visibility(colData[i].visible);
}
nm.dataview.getColumnMgr().updated = true;
nm.dataview.getColumnMgr().updated();
// Update page - set update_in_progress to true to avoid triggering
// the change handler and looping if the user has a custom field
// column change

View File

@ -281,7 +281,7 @@ class InfologApp extends EgwApp
nm.dataview.getColumnMgr().columns[i].set_width(colData[i].width);
nm.dataview.getColumnMgr().columns[i].set_visibility(colData[i].visible);
}
nm.dataview.getColumnMgr().updated = true;
nm.dataview.getColumnMgr().updated();
// Update page - set update_in_progress to true to avoid triggering
// the change handler and looping if the user has a custom field