Skip to content

Commit

Permalink
Merge pull request #11018 from nextcloud/backport/11016/stable28
Browse files Browse the repository at this point in the history
[stable28] Fix use of blockCalls in vue template
  • Loading branch information
SystemKeeper authored Nov 27, 2023
2 parents 844813e + 1c5fd97 commit 5e30a82
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/components/TopBar/CallButton.vue
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
autoHide: false,
html: true
}"
:disabled="startCallButtonDisabled || loading || blockCalls"
:disabled="startCallButtonDisabled || loading"
:type="startCallButtonType"
@click="handleClick">
<template #icon>
Expand Down Expand Up @@ -238,6 +238,7 @@ export default {
|| this.conversation.readOnly
|| this.isNextcloudTalkHashDirty
|| !this.currentConversationIsJoined
|| blockCalls
},

leaveCallLabel() {
Expand Down

0 comments on commit 5e30a82

Please sign in to comment.