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:
parent
1f24842ec1
commit
e4b2111120
|
@ -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",
|
||||
|
|
|
@ -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}
|
||||
|
|
Loading…
Reference in New Issue