Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/spreed.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2021-03-25 19:09:52 +0300
committerbackportbot[bot] <backportbot[bot]@users.noreply.github.com>2021-03-25 20:28:31 +0300
commit11f0a00032095cb81b1cb65671c9555d115bde7c (patch)
tree3e9921e465da8dc16c9ac65fcb72aa9e65406bd2 /src
parent93faeb95800b466696b3130f628fce577205b0da (diff)
Fix constant usage
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'src')
-rw-r--r--src/components/RightSidebar/Participants/ParticipantsList/Participant/Participant.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/RightSidebar/Participants/ParticipantsList/Participant/Participant.vue b/src/components/RightSidebar/Participants/ParticipantsList/Participant/Participant.vue
index 7740f007b..e3f48f849 100644
--- a/src/components/RightSidebar/Participants/ParticipantsList/Participant/Participant.vue
+++ b/src/components/RightSidebar/Participants/ParticipantsList/Participant/Participant.vue
@@ -295,7 +295,7 @@ export default {
return this.participant.label
},
isHandRaised() {
- if (this.isSearched || this.participant.inCall === PARTICIPANT.CALL_FLAG_DISCONNECTED) {
+ if (this.isSearched || this.participant.inCall === PARTICIPANT.CALL_FLAG.DISCONNECTED) {
return false
}