Increase the number of rows in collections

In collections, the list is set to 25 lines.
How can I increase it, for example to 50?

Currently the limit is hard-coded to 25.
You can change it in this file :

\modules\Content\views\collection\items.php
409: limit: 25,

1 Like

…or if you put this there, you can set it in the META data for the given model

409: limit: (model.meta && model.meta.limit) || 25,