From 5cf6a67a369263c0f4d6e7fba41866c12b0fca1e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bence=20L=C3=A1szl=C3=B3?= Date: Mon, 23 Mar 2020 17:49:00 +0100 Subject: [PATCH] (website/client/src/components/settings/site.vue): Fix refresh the de-register social media buttons. (#11992) --- website/client/src/components/settings/site.vue | 1 + 1 file changed, 1 insertion(+) diff --git a/website/client/src/components/settings/site.vue b/website/client/src/components/settings/site.vue index ac3299c44c..348025d886 100644 --- a/website/client/src/components/settings/site.vue +++ b/website/client/src/components/settings/site.vue @@ -833,6 +833,7 @@ export default { }, async deleteSocialAuth (network) { await axios.delete(`/api/v4/user/auth/social/${network.key}`); + this.user.auth[network.key] = {}; this.text(this.$t('detachedSocial', { network: network.name })); }, async socialAuth (network) {