Merge pull request #211 from romancm/210-fix-tag-editing

210 Fix tag editing
This commit is contained in:
gamebrary 2020-09-14 08:41:07 -07:00 committed by GitHub
commit 5e1362bba4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -175,7 +175,7 @@ export default {
this.loadSettings();
this.loadTags();
this.loadLists();
this.syncData();
this.load();
},
loadSettings() {

View file

@ -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)