From 13530f3611aa8304783ff9a0e60e1f45c7fa61e6 Mon Sep 17 00:00:00 2001 From: Thomas Citharel Date: Wed, 18 Dec 2019 10:11:50 +0100 Subject: [PATCH] Fix pagination for relays Signed-off-by: Thomas Citharel --- js/src/mixins/relay.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/src/mixins/relay.ts b/js/src/mixins/relay.ts index e008479dc..c26f2b412 100644 --- a/js/src/mixins/relay.ts +++ b/js/src/mixins/relay.ts @@ -11,7 +11,7 @@ export default class RelayMixin extends Vue { checkedRows: IFollower[] = []; page: number = 1; - perPage: number = 2; + perPage: number = 10; toggle(row) { this.$refs.table.toggleDetails(row);