silverstripe / silverstripe-asset-admin

Silverstripe assets gallery for asset management
BSD 3-Clause "New" or "Revised" License
19 stars 78 forks source link

Asset admin max page_length issue #1363

Closed josephlewisnz closed 1 year ago

josephlewisnz commented 1 year ago

Currently trying to increase the limit of the viewable files in the files tab. However, I noticed that the limit looks to be 100.

Currently applying this config

SilverStripe\AssetAdmin\Controller\AssetAdmin:
  page_length: 101

image

silverstripe/cms 4.13.1 silverstripe/asset-admin 1.13.1

josephlewisnz commented 1 year ago

Sorted after reading another issue.

SilverStripe\AssetAdmin\Controller\AssetAdmin:
  page_length: 200
  max_history_entries: 200

SilverStripe\GraphQL\Schema\Plugin\PaginationPlugin:
  default_limit: 200
  max_limit: 200