Skip to content

Commit b562d02

Browse files
committed
[js] Fixing Grid build
We cannot use Jest higher than 26.6.0 because that is what CreateReactApp uses. They need to upgrade and then we upgrade CreateReactApp.
1 parent 55698dc commit b562d02

3 files changed

Lines changed: 15 additions & 41 deletions

File tree

javascript/grid-ui/package-lock.json

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

javascript/grid-ui/src/components/RunningSessions/RunningSessions.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -576,12 +576,12 @@ class RunningSessions extends React.Component<RunningSessionsProps, RunningSessi
576576
</TableContainer>
577577
<TablePagination
578578
rowsPerPageOptions={[5, 10, 15]}
579-
component='div'
579+
component="div"
580580
count={rows.length}
581581
rowsPerPage={rowsPerPage}
582582
page={page}
583-
onChangePage={this.handleChangePage}
584-
onChangeRowsPerPage={this.handleChangeRowsPerPage}
583+
onPageChange={this.handleChangePage}
584+
onRowsPerPageChange={this.handleChangeRowsPerPage}
585585
/>
586586
</Paper>
587587
<FormControlLabel

package-lock.json

Lines changed: 11 additions & 38 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)