From 77f71b541515474ec0e416e163a61604ff2c25ad Mon Sep 17 00:00:00 2001 From: Keith Holliday Date: Thu, 30 Nov 2017 08:16:54 -0600 Subject: [PATCH] Fixed saving in progress tag when clicking save (#9598) --- website/client/components/tasks/user.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/client/components/tasks/user.vue b/website/client/components/tasks/user.vue index 62f65496ec..f941c6037d 100644 --- a/website/client/components/tasks/user.vue +++ b/website/client/components/tasks/user.vue @@ -410,7 +410,7 @@ export default { this.$delete(this.tagsSnap[key], index); }, saveTags () { - if (this.newTag) this.addTag(); + if (this.newTag) this.addTag(null, 'tags'); this.tagsByType.user.tags = this.tagsSnap.tags; this.tagsByType.challenges.tags = this.tagsSnap.challenges;