From def86405dc124234236f1cbb9580875f6f9ffb9b Mon Sep 17 00:00:00 2001 From: ncoronel Date: Mon, 24 Aug 2026 09:17:27 -0300 Subject: [PATCH] fix(purchase-list): conditionally render paginator for in-review and paid purchases --- .../purchase-list/purchase-list.html | 32 +++++++++++-------- 1 file changed, 18 insertions(+), 14 deletions(-) diff --git a/src/app/features/store/pages/account-page/components/purchase-list/purchase-list.html b/src/app/features/store/pages/account-page/components/purchase-list/purchase-list.html index 9bcc6ce..2da0666 100644 --- a/src/app/features/store/pages/account-page/components/purchase-list/purchase-list.html +++ b/src/app/features/store/pages/account-page/components/purchase-list/purchase-list.html @@ -17,13 +17,15 @@ } @if (inReviewPagination(); as pagination) { - + @if (pagination.last_page > 1) { + + } } } @@ -46,13 +48,15 @@ } @if (paidPagination(); as pagination) { - + @if (pagination.last_page > 1) { + + } } }