From d0eed9b7a5f4c1c67596609ea257893760171c96 Mon Sep 17 00:00:00 2001 From: nathangray Date: Mon, 15 Jun 2020 11:41:42 -0600 Subject: [PATCH] Infolog: Fix changing details/no-details overwrote a JS function, causing errors --- infolog/js/app.js | 2 +- infolog/js/app.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/infolog/js/app.js b/infolog/js/app.js index 42d6be2a35..caeb9ca549 100644 --- a/infolog/js/app.js +++ b/infolog/js/app.js @@ -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 diff --git a/infolog/js/app.ts b/infolog/js/app.ts index 4592f5c051..90fd89ca8f 100644 --- a/infolog/js/app.ts +++ b/infolog/js/app.ts @@ -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