diff --git a/apps/presentationeditor/main/app/view/FileMenuPanels.js b/apps/presentationeditor/main/app/view/FileMenuPanels.js index 6129947ebc..992ac9e992 100644 --- a/apps/presentationeditor/main/app/view/FileMenuPanels.js +++ b/apps/presentationeditor/main/app/view/FileMenuPanels.js @@ -1386,8 +1386,6 @@ define([], function () { this.lblDate.text(this.dateToString(value)); this._ShowHideInfoItem(this.lblDate, !!value); } - - this.renderCustomProperties(); }, updateFileInfo: function() { @@ -1439,6 +1437,8 @@ define([], function () { this.tblAuthor.find('.close').toggleClass('hidden', !this.mode.isEdit); !this.mode.isEdit && this._ShowHideInfoItem(this.tblAuthor, !!this.authors.length); } + + this.renderCustomProperties(); this.SetDisabled(); }, diff --git a/apps/spreadsheeteditor/main/app/view/FileMenuPanels.js b/apps/spreadsheeteditor/main/app/view/FileMenuPanels.js index e1b4418cee..e81da2ed19 100644 --- a/apps/spreadsheeteditor/main/app/view/FileMenuPanels.js +++ b/apps/spreadsheeteditor/main/app/view/FileMenuPanels.js @@ -1904,8 +1904,6 @@ define([], function () { this.lblDate.text(this.dateToString(value)); this._ShowHideInfoItem(this.lblDate, !!value); } - - this.renderCustomProperties(); }, updateFileInfo: function() { @@ -1957,6 +1955,8 @@ define([], function () { this.tblAuthor.find('.close').toggleClass('hidden', !this.mode.isEdit); !this.mode.isEdit && this._ShowHideInfoItem(this.tblAuthor, !!this.authors.length); } + + this.renderCustomProperties(); this.SetDisabled(); },