summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel Calviño Sánchez <danxuliu@gmail.com>2023-02-24 15:56:36 +0100
committerDaniel Calviño Sánchez <danxuliu@gmail.com>2023-02-24 15:56:36 +0100
commitf84689cf8a88e9fefdc6eddcfdeca65c4a0f1e71 (patch)
tree5df901afefa0f9da4f3b3ec7c3119bbd140fc550
parent2276af6a57e3d7709a2bc4df7ffe745c0127a443 (diff)
Hide bottom stripe in recordings
This is specially important if the height of the recording is limited, due to the minimum fixed height of the stripe. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
-rw-r--r--src/components/CallView/Grid/Grid.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/CallView/Grid/Grid.vue b/src/components/CallView/Grid/Grid.vue
index e9ec4b638..1b98ca5d8 100644
--- a/src/components/CallView/Grid/Grid.vue
+++ b/src/components/CallView/Grid/Grid.vue
@@ -486,7 +486,7 @@ export default {
},
stripeOpen() {
- return this.$store.getters.isStripeOpen
+ return this.$store.getters.isStripeOpen && !this.isRecording
},
},