fix: fix logo page calculation

This commit is contained in:
afn 2023-03-18 20:21:32 -04:00
parent ae86d6c986
commit 0601657395

View File

@ -76,7 +76,7 @@
min = currentPage * logoAmount;
max = min + logoAmount;
logoPages = Math.floor(logos.length / logoAmount);
logoPages = Math.ceil(logos.length / logoAmount);
// update ui
logos = logos;