Skip to content

Commit 1b0a4b9

Browse files
item limit per page is now 10
1 parent 3d232e9 commit 1b0a4b9

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

src/redux/reducers/runsReducer.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,6 @@ const runsReducer = (state: State = initialState, action: Action): State => {
120120
const graph: any = camelCaseObject(graphFromRun);
121121

122122
return {
123-
...(state.graphForRunId = graph),
124123
...newStateForGraph(state, graph),
125124
};
126125
// const run = camelCaseObject({

src/ui/layouts/common/Table/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ export interface TableProps {
3434
trOnClick?: (arg: any) => void;
3535
}
3636

37-
const ITEMS_PER_PAGE = 5;
37+
const ITEMS_PER_PAGE = 10;
3838

3939
export const Table: React.FC<TableProps> = ({
4040
headerCols,

0 commit comments

Comments
 (0)