I am trying to override the users view in the panel to display more then the default 20 users. I tried this…
'areas' => [
'users' => function () {
return [
'views' => [
'users' => [
'action' => function () {
return [
'component' => 'k-users-view',
'props' => [
'users' => [
'pagination' => [
'limit' => 60
]
]
]
];
}
]
]
];
},
]
But that just makes the whole panel view dissapear. I dont need to overide everything, just want more then 20 in the pagination. What am i doing wrong? i trimmed down the code from here Panel areas | Kirby CMS