From 527129870439c24fd9f107e978bf284fb611eb3e Mon Sep 17 00:00:00 2001 From: elweyn Date: Fri, 29 Jul 2022 09:40:40 +0200 Subject: [PATCH 1/2] =?UTF-8?q?Remove=20=E2=80=A6=20from=20pagination?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- admin/src/components/TransactionLinkList.vue | 1 + admin/src/pages/Creation.vue | 1 + admin/src/pages/UserSearch.vue | 1 + frontend/src/components/Contributions/ContributionList.vue | 1 + frontend/src/components/GddTransactionList.vue | 1 + frontend/src/components/GdtTransactionList.vue | 4 +++- 6 files changed, 8 insertions(+), 1 deletion(-) diff --git a/admin/src/components/TransactionLinkList.vue b/admin/src/components/TransactionLinkList.vue index 0289792a2..04d98c25f 100644 --- a/admin/src/components/TransactionLinkList.vue +++ b/admin/src/components/TransactionLinkList.vue @@ -11,6 +11,7 @@ :per-page="perPage" :total-rows="rows" align="center" + hide-ellipsis="true" > diff --git a/admin/src/pages/Creation.vue b/admin/src/pages/Creation.vue index 9e554ff92..c94e07b6a 100644 --- a/admin/src/pages/Creation.vue +++ b/admin/src/pages/Creation.vue @@ -29,6 +29,7 @@ per-page="perPage" :total-rows="rows" align="center" + hide-ellipsis="true" > diff --git a/admin/src/pages/UserSearch.vue b/admin/src/pages/UserSearch.vue index 8eb1f9c63..4db214520 100644 --- a/admin/src/pages/UserSearch.vue +++ b/admin/src/pages/UserSearch.vue @@ -52,6 +52,7 @@ per-page="perPage" :total-rows="rows" align="center" + hide-ellipsis="true" >
diff --git a/frontend/src/components/Contributions/ContributionList.vue b/frontend/src/components/Contributions/ContributionList.vue index 097452194..0c50fd716 100644 --- a/frontend/src/components/Contributions/ContributionList.vue +++ b/frontend/src/components/Contributions/ContributionList.vue @@ -16,6 +16,7 @@ :per-page="pageSize" :total-rows="contributionCount" align="center" + hide-ellipsis="true" > diff --git a/frontend/src/components/GddTransactionList.vue b/frontend/src/components/GddTransactionList.vue index 5becfa39e..580711a36 100644 --- a/frontend/src/components/GddTransactionList.vue +++ b/frontend/src/components/GddTransactionList.vue @@ -69,6 +69,7 @@ :per-page="pageSize" :total-rows="transactionCount" align="center" + hide-ellipsis="true" >
diff --git a/frontend/src/components/GdtTransactionList.vue b/frontend/src/components/GdtTransactionList.vue index 4934f9fce..728f829e1 100644 --- a/frontend/src/components/GdtTransactionList.vue +++ b/frontend/src/components/GdtTransactionList.vue @@ -36,7 +36,9 @@ :per-page="pageSize" :total-rows="transactionGdtCount" align="center" - > + > + +
From 2fd84df469f3c9914d36a800467d2f9671f33fea Mon Sep 17 00:00:00 2001 From: elweyn Date: Fri, 29 Jul 2022 10:21:07 +0200 Subject: [PATCH 2/2] v-bind on hide-ellipsis to have a boolean instead of a string. --- admin/src/components/TransactionLinkList.vue | 2 +- admin/src/pages/Creation.vue | 2 +- admin/src/pages/UserSearch.vue | 2 +- frontend/src/components/Contributions/ContributionList.vue | 2 +- frontend/src/components/GddTransactionList.vue | 2 +- frontend/src/components/GdtTransactionList.vue | 5 ++--- 6 files changed, 7 insertions(+), 8 deletions(-) diff --git a/admin/src/components/TransactionLinkList.vue b/admin/src/components/TransactionLinkList.vue index 04d98c25f..d850083cc 100644 --- a/admin/src/components/TransactionLinkList.vue +++ b/admin/src/components/TransactionLinkList.vue @@ -11,7 +11,7 @@ :per-page="perPage" :total-rows="rows" align="center" - hide-ellipsis="true" + :hide-ellipsis="true" > diff --git a/admin/src/pages/Creation.vue b/admin/src/pages/Creation.vue index c94e07b6a..26d44fd3e 100644 --- a/admin/src/pages/Creation.vue +++ b/admin/src/pages/Creation.vue @@ -29,7 +29,7 @@ per-page="perPage" :total-rows="rows" align="center" - hide-ellipsis="true" + :hide-ellipsis="true" >
diff --git a/admin/src/pages/UserSearch.vue b/admin/src/pages/UserSearch.vue index 4db214520..df49526d7 100644 --- a/admin/src/pages/UserSearch.vue +++ b/admin/src/pages/UserSearch.vue @@ -52,7 +52,7 @@ per-page="perPage" :total-rows="rows" align="center" - hide-ellipsis="true" + :hide-ellipsis="true" >
diff --git a/frontend/src/components/Contributions/ContributionList.vue b/frontend/src/components/Contributions/ContributionList.vue index 0c50fd716..cf8606e33 100644 --- a/frontend/src/components/Contributions/ContributionList.vue +++ b/frontend/src/components/Contributions/ContributionList.vue @@ -16,7 +16,7 @@ :per-page="pageSize" :total-rows="contributionCount" align="center" - hide-ellipsis="true" + :hide-ellipsis="true" > diff --git a/frontend/src/components/GddTransactionList.vue b/frontend/src/components/GddTransactionList.vue index 580711a36..a74be5187 100644 --- a/frontend/src/components/GddTransactionList.vue +++ b/frontend/src/components/GddTransactionList.vue @@ -69,7 +69,7 @@ :per-page="pageSize" :total-rows="transactionCount" align="center" - hide-ellipsis="true" + :hide-ellipsis="true" >
diff --git a/frontend/src/components/GdtTransactionList.vue b/frontend/src/components/GdtTransactionList.vue index 728f829e1..f915cd881 100644 --- a/frontend/src/components/GdtTransactionList.vue +++ b/frontend/src/components/GdtTransactionList.vue @@ -36,9 +36,8 @@ :per-page="pageSize" :total-rows="transactionGdtCount" align="center" - > - - + :hide-ellipsis="true" + >