Skip to content

Commit

Permalink
Merge pull request 'fix/custom-property-undo' (#139) from fix/custom-…
Browse files Browse the repository at this point in the history
…property-undo into release/v8.3.0
  • Loading branch information
Julia Radzhabova committed Dec 2, 2024
2 parents 2aaf892 + 2f472b1 commit bab43a6
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 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 @@ -1704,8 +1704,6 @@ define([], function () {
this._ShowHideInfoItem(this.lblDate, !!value);
} else if (pdfProps)
this.updatePdfInfo(pdfProps);

this.renderCustomProperties();
},

updateFileInfo: function() {
Expand Down Expand Up @@ -1749,6 +1747,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
4 changes: 2 additions & 2 deletions apps/presentationeditor/main/app/view/FileMenuPanels.js
Original file line number Diff line number Diff line change
Expand Up @@ -1359,8 +1359,6 @@ define([], function () {
this.lblDate.text(this.dateToString(value));
this._ShowHideInfoItem(this.lblDate, !!value);
}

this.renderCustomProperties();
},

updateFileInfo: function() {
Expand Down Expand Up @@ -1412,6 +1410,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();
},

Expand Down
4 changes: 2 additions & 2 deletions apps/spreadsheeteditor/main/app/view/FileMenuPanels.js
Original file line number Diff line number Diff line change
Expand Up @@ -1877,8 +1877,6 @@ define([], function () {
this.lblDate.text(this.dateToString(value));
this._ShowHideInfoItem(this.lblDate, !!value);
}

this.renderCustomProperties();
},

updateFileInfo: function() {
Expand Down Expand Up @@ -1930,6 +1928,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();
},

Expand Down

0 comments on commit bab43a6

Please sign in to comment.