Skip to content

Commit

Permalink
feat: show conversation settings, if URL hash is specified
Browse files Browse the repository at this point in the history
Signed-off-by: Maksim Sukharev <antreesy.web@gmail.com>
  • Loading branch information
Antreesy committed Oct 9, 2024
1 parent 241521a commit 98996ee
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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 })
}
})
Expand Down Expand Up @@ -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)
Expand Down

0 comments on commit 98996ee

Please sign in to comment.