From 042cfb75824c13039c6f82af4cfa7ecba0bd92a5 Mon Sep 17 00:00:00 2001 From: Nachtalb Date: Sun, 9 May 2021 23:32:11 +0200 Subject: [PATCH] Fix missing users in userlist after removing searchinput Because the "Username" components still had the same ":key" vue tried to in-place update them. This doesn't quite work for objects (in this case "user" or "user.original"). Thus we change the key for the search so that it actually inits a new component and thus evaluates its content correctly. --- client/components/ChatUserList.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/components/ChatUserList.vue b/client/components/ChatUserList.vue index 2bc19696..bbb4f4f5 100644 --- a/client/components/ChatUserList.vue +++ b/client/components/ChatUserList.vue @@ -28,7 +28,7 @@