From e6dfc159ed90828bc4af137ed9d9de25b8517431 Mon Sep 17 00:00:00 2001 From: Pavel Kuzmin Date: Fri, 19 Jan 2024 15:45:28 +0500 Subject: [PATCH] fix: change teamid (#8613) --- app/javascript/dashboard/components/ChatList.vue | 3 +++ 1 file changed, 3 insertions(+) diff --git a/app/javascript/dashboard/components/ChatList.vue b/app/javascript/dashboard/components/ChatList.vue index f3e901d37..31fe6110d 100644 --- a/app/javascript/dashboard/components/ChatList.vue +++ b/app/javascript/dashboard/components/ChatList.vue @@ -519,6 +519,9 @@ export default { }, }, watch: { + teamId() { + this.updateVirtualListProps('teamId', this.teamId); + }, activeTeam() { this.resetAndFetchData(); },