From 6f9cbf9ca1bff87e6deab6be6089d3c4e7c0f578 Mon Sep 17 00:00:00 2001 From: Keith Holliday Date: Thu, 30 Nov 2017 08:19:03 -0600 Subject: [PATCH] Only update the user when editing profile (#9601) --- website/client/components/userMenu/profile.vue | 1 - 1 file changed, 1 deletion(-) diff --git a/website/client/components/userMenu/profile.vue b/website/client/components/userMenu/profile.vue index 8af7229876..37a402612d 100644 --- a/website/client/components/userMenu/profile.vue +++ b/website/client/components/userMenu/profile.vue @@ -752,7 +752,6 @@ export default { let curVal = this.user.profile[key]; if (!curVal || this.editingProfile[key].toString() !== curVal.toString()) { values[`profile.${key}`] = value; - this.$set(this.userLoggedIn.profile, key, value); this.$set(this.user.profile, key, value); } });