mirror of
https://github.com/romancm/gamebrary
synced 2025-02-16 11:08:24 +00:00
Merge pull request #211 from romancm/210-fix-tag-editing
210 Fix tag editing
This commit is contained in:
commit
5e1362bba4
2 changed files with 2 additions and 2 deletions
|
@ -175,7 +175,7 @@ export default {
|
|||
this.loadSettings();
|
||||
this.loadTags();
|
||||
this.loadLists();
|
||||
this.syncData();
|
||||
this.load();
|
||||
},
|
||||
|
||||
loadSettings() {
|
||||
|
|
|
@ -303,7 +303,7 @@ export default {
|
|||
async saveTags(deleting) {
|
||||
this.saving = true;
|
||||
const action = deleting
|
||||
? '_LEGACY'
|
||||
? 'SAVE_TAGS_NO_MERGE'
|
||||
: 'SAVE_TAGS';
|
||||
|
||||
await this.$store.dispatch(action, this.localTags)
|
||||
|
|
Loading…
Add table
Reference in a new issue