From 8d06bf7a4f2fc114c4a408fe9486e683ab3fdba4 Mon Sep 17 00:00:00 2001 From: Scott Sutherland Date: Sat, 5 Oct 2024 12:49:25 -0500 Subject: [PATCH] Update PowerHuntShares.psm1 --- PowerHuntShares.psm1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PowerHuntShares.psm1 b/PowerHuntShares.psm1 index 3244003..793bae1 100644 --- a/PowerHuntShares.psm1 +++ b/PowerHuntShares.psm1 @@ -11548,7 +11548,7 @@ function createEllipsis(pagination) { function createNavigationArrows(pagination, pageCount, tableId, paginationId) { const nextButton = document.createElement('button'); - nextButton.textContent = '→'; + nextButton.textContent = '\u2192'; nextButton.classList.add('pagination-button'); nextButton.addEventListener('click', () => { if (currentPage < pageCount) {