diff --git a/module/aiapp/ui/square.html.php b/module/aiapp/ui/square.html.php index 370320e90d..f9016525ed 100644 --- a/module/aiapp/ui/square.html.php +++ b/module/aiapp/ui/square.html.php @@ -133,7 +133,7 @@ div( div( setClass('pager-container'), - pager() + pager(set(usePager())) ); render(); diff --git a/module/kanban/ui/space.html.php b/module/kanban/ui/space.html.php index 31e73044d1..bb1ec65313 100644 --- a/module/kanban/ui/space.html.php +++ b/module/kanban/ui/space.html.php @@ -136,6 +136,6 @@ foreach($spaceList as $space) } !empty($spaceList) ? $blocks : div(set::className('dtable'), div(set::className('dtable-empty-tip'), span(set::className('text-gray'), $lang->kanbanspace->empty))); -if(!empty($spaceList)) div(set::className('table-footer'), pager(set::className('pull-right'))); +if(!empty($spaceList)) div(set::className('table-footer'), pager(set(usePager()), set::className('pull-right'))); render(); diff --git a/module/project/ui/browsebycard.html.php b/module/project/ui/browsebycard.html.php index a02adc5b75..27290aeeb2 100644 --- a/module/project/ui/browsebycard.html.php +++ b/module/project/ui/browsebycard.html.php @@ -336,7 +336,7 @@ div !empty($projectStats) ? div ( setID('cardsFooter'), - pager() + pager(set(usePager())) ) : null );