summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/vue_shared/components/pagination/table_pagination.vue
diff options
context:
space:
mode:
Diffstat (limited to 'app/assets/javascripts/vue_shared/components/pagination/table_pagination.vue')
-rw-r--r--app/assets/javascripts/vue_shared/components/pagination/table_pagination.vue4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/assets/javascripts/vue_shared/components/pagination/table_pagination.vue b/app/assets/javascripts/vue_shared/components/pagination/table_pagination.vue
index 29a4a90a59f..5f2a66ee0b7 100644
--- a/app/assets/javascripts/vue_shared/components/pagination/table_pagination.vue
+++ b/app/assets/javascripts/vue_shared/components/pagination/table_pagination.vue
@@ -20,7 +20,7 @@ export default {
Here is an example `change` method:
change(pagenum) {
- gl.utils.visitUrl(`?page=${pagenum}`);
+ visitUrl(`?page=${pagenum}`);
},
*/
change: {
@@ -64,7 +64,7 @@ export default {
<template>
<gl-pagination
v-if="showPagination"
- class="justify-content-center prepend-top-default"
+ class="justify-content-center gl-mt-3"
v-bind="$attrs"
:value="pageInfo.page"
:per-page="pageInfo.perPage"