Set file to be modified after deleting a version. Fixes #974

This commit is contained in:
Dennis Ploeger 2018-12-21 08:35:10 +01:00
parent 9b9cda384a
commit 107beaec62
1 changed files with 1 additions and 0 deletions

View File

@ -431,6 +431,7 @@ const EntryModel = Backbone.Model.extend({
const ix = this.entry.history.indexOf(historyEntry);
if (ix >= 0) {
this.entry.removeHistory(ix);
this.file.setModified();
}
this._fillByEntry();
},