Skip to content

Commit

Permalink
Fix use of blockCalls in vue template
Browse files Browse the repository at this point in the history
Signed-off-by: Marcel Müller <[email protected]>
  • Loading branch information
SystemKeeper committed Dec 6, 2023
1 parent 1c79189 commit dc3ef3f
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 @@ -202,6 +202,7 @@ export default {
|| this.conversation.readOnly
|| this.isNextcloudTalkHashDirty
|| !this.currentConversationIsJoined
|| blockCalls
},
leaveCallLabel() {
Expand Down

0 comments on commit dc3ef3f

Please sign in to comment.