1
0
mirror of https://github.com/keeweb/keeweb.git synced 2024-06-26 07:39:04 +02:00

Merge pull request #1053 from dploeger/issue-974

Set file to be modified after deleting a version. Fixes #974
This commit is contained in:
antelle 2018-12-21 17:52:06 +01:00 committed by GitHub
commit 7cc8e125e5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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();
},