allow displaying 500 or 1000 items on message list table w/ burnettk (#1705)

Co-authored-by: jasquat <jasquat@users.noreply.github.com>
This commit is contained in:
jasquat 2024-06-10 16:43:32 -04:00 committed by GitHub
parent 1f24842ec1
commit e4b2111120
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 1 deletions

View File

@ -73,9 +73,9 @@
"scripts": {
"build": "vite build",
"eslint": "./node_modules/.bin/eslint src --ext .js,.jsx,.ts,.tsx",
"eslint:fix": "./node_modules/.bin/eslint --fix src --ext .js,.jsx,.ts,.tsx",
"format": "prettier --write src/**/*.[tj]s{,x}",
"lint": "npm run eslint && npm run typecheck",
"lint:fix": "./node_modules/.bin/eslint --fix src --ext .js,.jsx,.ts,.tsx",
"serve": "vite preview",
"start": "VITE_VERSION_INFO='{\"version\":\"local\"}' vite",
"test": "vitest run --coverage",

View File

@ -199,6 +199,7 @@ export default function MessageInstanceList({ processInstanceId }: OwnProps) {
<PaginationForTable
page={page}
perPage={perPage}
perPageOptions={[10, 50, 100, 500, 1000]}
pagination={pagination}
tableToDisplay={buildTable()}
paginationQueryParamPrefix={paginationQueryParamPrefix}