Correct action name when editing tags

This commit is contained in:
Gamebrary 2020-09-14 08:38:37 -07:00
parent 56598accc7
commit 512d2e9328

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)