chore: lint
This commit is contained in:
@@ -76,10 +76,10 @@ export const RunsTable = (
|
|||||||
if (runs) {
|
if (runs) {
|
||||||
const parsedRows: Data[] = [];
|
const parsedRows: Data[] = [];
|
||||||
runs.map((run: any, index) => {
|
runs.map((run: any, index) => {
|
||||||
parsedRows.push({
|
parsedRows.push({
|
||||||
id: index,
|
id: index,
|
||||||
...run,
|
...run,
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
setRows(parsedRows);
|
setRows(parsedRows);
|
||||||
} else {
|
} else {
|
||||||
@@ -112,8 +112,8 @@ export const RunsTable = (
|
|||||||
return (
|
return (
|
||||||
<React.Fragment>
|
<React.Fragment>
|
||||||
<Typography variant="h6" gutterBottom>
|
<Typography variant="h6" gutterBottom>
|
||||||
All Runs
|
All Runs
|
||||||
</Typography>
|
</Typography>
|
||||||
<TableContainer component={Paper} sx={{ width: '100%', overflow: 'hidden' }}>
|
<TableContainer component={Paper} sx={{ width: '100%', overflow: 'hidden' }}>
|
||||||
{Object.entries(groupedRows).map(([name, group]) => (
|
{Object.entries(groupedRows).map(([name, group]) => (
|
||||||
<Accordion key={name}>
|
<Accordion key={name}>
|
||||||
|
|||||||
Reference in New Issue
Block a user