Skip to content

Commit

Permalink
fix custom property undo invalid render
Browse files Browse the repository at this point in the history
  • Loading branch information
sekiju committed Nov 13, 2024
1 parent c8ef047 commit 7ea9ba0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/documenteditor/main/app/view/FileMenuPanels.js
Original file line number Diff line number Diff line change
Expand Up @@ -1731,8 +1731,6 @@ define([], function () {
this._ShowHideInfoItem(this.lblDate, !!value);
} else if (pdfProps)
this.updatePdfInfo(pdfProps);

this.renderCustomProperties();
},

updateFileInfo: function() {
Expand Down Expand Up @@ -1776,6 +1774,8 @@ define([], function () {
this.tblAuthor.find('.close').toggleClass('hidden', !this.mode.isEdit);
this._ShowHideInfoItem(this.tblAuthor, this.mode.isEdit || !!this.authors.length);
}

this.renderCustomProperties();
this.SetDisabled();
},

Expand Down

0 comments on commit 7ea9ba0

Please sign in to comment.