🐛 Fix most-used / last-used storage (#1056, #1033)

This commit is contained in:
Alicia Sykes 2023-02-26 14:13:59 +00:00
parent 743232e597
commit 4fc3abf511
1 changed files with 2 additions and 2 deletions

View File

@ -157,8 +157,8 @@ export default {
this.$emit('itemClicked');
// Update the most/ last used ledger, for smart-sorting
if (!this.appConfig.disableSmartSort) {
this.incrementMostUsedCount(this.id);
this.incrementLastUsedCount(this.id);
this.incrementMostUsedCount(this.item.id);
this.incrementLastUsedCount(this.item.id);
}
},
/* Open item, using specified method */