fix #1104: update unsaved flag for all entries

This commit is contained in:
antelle 2019-03-31 14:51:35 +02:00
parent 4e3b0b73b4
commit 62e3068af1
1 changed files with 1 additions and 1 deletions

View File

@ -431,7 +431,7 @@ const FileModel = Backbone.Model.extend({
return;
}
this.setOpenFile({ passwordLength: this.get('passwordLength') });
this.forEachEntry({}, entry => entry.setSaved());
this.forEachEntry({ includeDisabled: true }, entry => entry.setSaved());
},
setPassword: function(password) {