summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMaksim Sukharev <antreesy.web@gmail.com>2023-06-06 14:35:29 +0200
committerbackportbot-nextcloud[bot] <backportbot-nextcloud[bot]@users.noreply.github.com>2023-06-06 21:25:46 +0000
commitf8cbc31810937d2abf4286120e72a17ddc268f9b (patch)
tree974fea4f6ad38707ce0c31894c1a1fccc3b5d650
parentba358921e9f0aa642a7c9f0a95235ce43ea1784c (diff)
fix error when click on a group from search results
Signed-off-by: Maksim Sukharev <antreesy.web@gmail.com>
-rw-r--r--src/components/LeftSidebar/NewGroupConversation/NewGroupConversation.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/LeftSidebar/NewGroupConversation/NewGroupConversation.vue b/src/components/LeftSidebar/NewGroupConversation/NewGroupConversation.vue
index f13536392..135a857af 100644
--- a/src/components/LeftSidebar/NewGroupConversation/NewGroupConversation.vue
+++ b/src/components/LeftSidebar/NewGroupConversation/NewGroupConversation.vue
@@ -285,7 +285,7 @@ export default {
showModalForItem(item) {
if (item) {
// Preload the conversation name from group selection
- this.conversation.displayName = item.label
+ this.newConversation.displayName = item.label
this.$store.dispatch('updateSelectedParticipants', item)
}