From 43dd0f2c4d25495e2aa1b737f8a9d0f6a1386646 Mon Sep 17 00:00:00 2001 From: Natsumi Date: Sun, 4 Apr 2021 06:28:30 +1300 Subject: [PATCH] Fix displaying old user image while new user image is loading --- html/src/app.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/html/src/app.js b/html/src/app.js index 827f6509..44c3f5dc 100644 --- a/html/src/app.js +++ b/html/src/app.js @@ -7453,6 +7453,8 @@ speechSynthesis.getVoices(); $app.methods.showUserDialog = function (userId) { this.$nextTick(() => adjustDialogZ(this.$refs.userDialog.$el)); var D = this.userDialog; + D.currentAvatarThumbnailImageUrl = ''; + D.userIcon = ''; D.id = userId; D.treeData = []; D.memo = this.loadMemo(userId);