feat(ui) - errors pagination

This commit is contained in:
Shekar Siri 2022-03-15 17:44:09 +01:00
parent 7168e660cc
commit 4946dd2036
2 changed files with 2 additions and 2 deletions

View file

@ -10,7 +10,7 @@ import Divider from 'Components/Errors/ui/Divider';
import ListItem from './ListItem/ListItem';
import { debounce } from 'App/utils';
const PER_PAGE = 5;
const PER_PAGE = 10;
const sortOptionsMap = {
'lastOccurrence-desc': 'Last Occurrence',
'firstOccurrence-desc': 'First Occurrence',

View file

@ -8,7 +8,7 @@ import { reduceThenFetchResource } from './search'
const name = "error";
const idKey = "errorId";
const PER_PAGE = 5;
const PER_PAGE = 10;
const DEFAULT_SORT = 'lastOccurrence';
const DEFAULT_ORDER = 'desc';