mirror of
https://github.com/openvk/openvk
synced 2025-06-07 22:59:58 +03:00
fix: followers scroll
This commit is contained in:
parent
bf87ab9858
commit
1af6cd83e4
1 changed files with 1 additions and 1 deletions
|
@ -135,7 +135,7 @@ final class GroupPresenter extends OpenVKPresenter
|
||||||
|
|
||||||
$this->template->paginatorConf = (object) [
|
$this->template->paginatorConf = (object) [
|
||||||
"count" => $this->template->count,
|
"count" => $this->template->count,
|
||||||
"page" => $this->queryParam("p") ?? 1,
|
"page" => (int)($this->queryParam("p") ?? 1),
|
||||||
"amount" => 10,
|
"amount" => 10,
|
||||||
"perPage" => OPENVK_DEFAULT_PER_PAGE,
|
"perPage" => OPENVK_DEFAULT_PER_PAGE,
|
||||||
];
|
];
|
||||||
|
|
Loading…
Reference in a new issue