mirror of
https://github.com/sartography/spiff-arena.git
synced 2025-01-13 02:54:27 +00:00
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": {
|
"scripts": {
|
||||||
"build": "vite build",
|
"build": "vite build",
|
||||||
"eslint": "./node_modules/.bin/eslint src --ext .js,.jsx,.ts,.tsx",
|
"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}",
|
"format": "prettier --write src/**/*.[tj]s{,x}",
|
||||||
"lint": "npm run eslint && npm run typecheck",
|
"lint": "npm run eslint && npm run typecheck",
|
||||||
|
"lint:fix": "./node_modules/.bin/eslint --fix src --ext .js,.jsx,.ts,.tsx",
|
||||||
"serve": "vite preview",
|
"serve": "vite preview",
|
||||||
"start": "VITE_VERSION_INFO='{\"version\":\"local\"}' vite",
|
"start": "VITE_VERSION_INFO='{\"version\":\"local\"}' vite",
|
||||||
"test": "vitest run --coverage",
|
"test": "vitest run --coverage",
|
||||||
|
@ -199,6 +199,7 @@ export default function MessageInstanceList({ processInstanceId }: OwnProps) {
|
|||||||
<PaginationForTable
|
<PaginationForTable
|
||||||
page={page}
|
page={page}
|
||||||
perPage={perPage}
|
perPage={perPage}
|
||||||
|
perPageOptions={[10, 50, 100, 500, 1000]}
|
||||||
pagination={pagination}
|
pagination={pagination}
|
||||||
tableToDisplay={buildTable()}
|
tableToDisplay={buildTable()}
|
||||||
paginationQueryParamPrefix={paginationQueryParamPrefix}
|
paginationQueryParamPrefix={paginationQueryParamPrefix}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user