From 2365d24c5ce3aee042bc9822616936c1e233db8c Mon Sep 17 00:00:00 2001 From: Ramon Wenger Date: Wed, 27 Jul 2022 17:52:44 +0200 Subject: [PATCH] Fix automatic close of sidebar Resolves MS-535 --- client/src/components/profile/Avatar.vue | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/client/src/components/profile/Avatar.vue b/client/src/components/profile/Avatar.vue index 6c393d38..b6b81046 100644 --- a/client/src/components/profile/Avatar.vue +++ b/client/src/components/profile/Avatar.vue @@ -73,7 +73,9 @@ this.$apollo.mutate({ mutation: TOGGLE_SIDEBAR, variables: { - profile: false + sidebar: { + profile: false + } } }); }