From 1208e72d1a24c8493296ac9853754d13368e6e1e Mon Sep 17 00:00:00 2001
From: alex <alex@alexloehr.net>
Date: Mon, 07 Jul 2025 07:52:10 +0000
Subject: [PATCH] GS-2199
---
vue/src/components/Pagination.vue | 4 +++-
1 files changed, 3 insertions(+), 1 deletions(-)
diff --git a/vue/src/components/Pagination.vue b/vue/src/components/Pagination.vue
index 69fc0e5..02c85b0 100644
--- a/vue/src/components/Pagination.vue
+++ b/vue/src/components/Pagination.vue
@@ -10,6 +10,7 @@
total: Number,
offset: Number,
limit: Number,
+ current: Number,
})
const emit = defineEmits(["go"])
@@ -70,9 +71,10 @@
<div class="pagination">
<div class="pagination-buttons">
+<!-- <pre>--{{current}}--</pre>-->
<input type="button" @click="goStart()" class="start" value="«">
<input type="button" @click="goPrev()" class="prev" value="‹">
- <span class="current">{{ offset }} - {{ offset + limit }} / {{ total }}</span>
+ <span class="current">{{ offset }} - {{ offset + current }} / {{ total }}</span>
<input type="button" @click="goNext()" class="next" value="›">
<input type="button" @click="goEnd()" class="end" value="»">
<KeyboardToggle :initial="false" @toggle="toggleKeyboard" style="color: #666" />
--
Gitblit v1.8.0