aboutsummaryrefslogtreecommitdiff
path: root/ufund-ui/src/app/components/need-list
diff options
context:
space:
mode:
authorsowgro <tpoke.ferrari@gmail.com>2025-04-01 16:58:12 -0400
committersowgro <tpoke.ferrari@gmail.com>2025-04-01 16:58:12 -0400
commit0b49430e3b0a5cc14521db58af19dafa5384c3c4 (patch)
treec82d48337bf6989c11cbd3b721c32680a5becdcb /ufund-ui/src/app/components/need-list
parent726b527af983025a95daae67864122761bcc4e78 (diff)
downloadJellySolutions-0b49430e3b0a5cc14521db58af19dafa5384c3c4.tar.gz
JellySolutions-0b49430e3b0a5cc14521db58af19dafa5384c3c4.tar.bz2
JellySolutions-0b49430e3b0a5cc14521db58af19dafa5384c3c4.zip
Fix warnings and misaligned prev page button
Diffstat (limited to 'ufund-ui/src/app/components/need-list')
-rw-r--r--ufund-ui/src/app/components/need-list/need-list.component.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/ufund-ui/src/app/components/need-list/need-list.component.html b/ufund-ui/src/app/components/need-list/need-list.component.html
index c0501ba..8d01291 100644
--- a/ufund-ui/src/app/components/need-list/need-list.component.html
+++ b/ufund-ui/src/app/components/need-list/need-list.component.html
@@ -65,7 +65,7 @@
</div>
<div id="page-selector">
- <button *ngIf="currentPage > 0" (click)="decrementPage()"><span class="icon">arrow_back_ios</span></button>
+ <button *ngIf="currentPage > 0" (click)="decrementPage()"><span class="icon">arrow_back_ios_new</span></button>
<span>Page {{currentPage + 1}} of {{totalPages}}</span>
<button *ngIf="currentPage < totalPages - 1" (click)="incrementPage()"><span class="icon">arrow_forward_ios</span></button>
</div>