From 98996eee0e9599ed50a4742e89bf6590dbd7535f Mon Sep 17 00:00:00 2001 From: Maksim Sukharev Date: Wed, 9 Oct 2024 17:55:36 +0200 Subject: [PATCH] feat: show conversation settings, if URL hash is specified Signed-off-by: Maksim Sukharev --- src/App.vue | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/App.vue b/src/App.vue index 30ca5c5bead..4da2aa11b7b 100644 --- a/src/App.vue +++ b/src/App.vue @@ -475,6 +475,8 @@ export default { if (to.hash === '#direct-call') { emit('talk:media-settings:show') + } else if (to.hash === '#settings') { + emit('show-conversation-settings', { token: this.token }) } }) @@ -502,6 +504,8 @@ export default { if (this.$route.hash === '#direct-call') { emit('talk:media-settings:show') + } else if (this.$route.hash === '#settings') { + emit('show-conversation-settings', { token: this.token }) } subscribe('notifications:action:execute', this.interceptNotificationActions)