Only show 8 notifications at a time instead of 10

This commit is contained in:
johnnyq 2025-05-28 17:43:03 -04:00
parent 4124188505
commit dcca93e34f
1 changed files with 1 additions and 1 deletions

View File

@ -97,7 +97,7 @@ ob_start();
<script> <script>
$(document).ready(function () { $(document).ready(function () {
var perPage = 10; var perPage = 8;
var $items = $(".notification-item"); var $items = $(".notification-item");
var totalItems = $items.length; var totalItems = $items.length;
var totalPages = Math.ceil(totalItems / perPage); var totalPages = Math.ceil(totalItems / perPage);