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
diff options
context:
space:
mode:
-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 b3eb8315d..4a62a524f 100644
--- a/src/components/CallView/Grid/Grid.vue
+++ b/src/components/CallView/Grid/Grid.vue
@@ -483,7 +483,7 @@ export default {
numberOfPages() {
if (this.currentPage >= this.numberOfPages) {
- this.currentPage = this.numberOfPages - 1
+ this.currentPage = Math.max(0, this.numberOfPages - 1)
}
},
},