Skip to content

Commit 26fdec9

Browse files
committed
cleanup
1 parent d8d8ffa commit 26fdec9

1 file changed

Lines changed: 11 additions & 15 deletions

File tree

lib/public/views/Runs/RunPerDataPass/RunsPerDataPassOverviewPage.js

Lines changed: 11 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,7 @@ import { numericalComparisonFilter } from '../../../components/Filters/common/fi
4040
import { iconCaretBottom } from '/js/src/icons.js';
4141
import { BkpRoles } from '../../../domain/enums/BkpRoles.js';
4242

43-
// const TABLEROW_HEIGHT = 59;
44-
const TABLEROW_HEIGHT = 19;
43+
const TABLEROW_HEIGHT = 59;
4544
// Estimate of the navbar and pagination elements height total; Needs to be updated in case of changes;
4645
const PAGE_USED_HEIGHT = 215;
4746

@@ -92,7 +91,6 @@ const skimmableControl = (dataPass, onclick, requestResult) => {
9291
NotAsked: () => h('button.btn.primary', { onclick }, buttonContent),
9392
});
9493
}
95-
return;
9694
};
9795

9896
/**
@@ -302,18 +300,16 @@ export const RunsPerDataPassOverviewPage = ({
302300
Failure: (errors) => errorAlert(errors),
303301
Other: () => null,
304302
}),
305-
// h('.intermediate-flex-column.w-100', [
306-
table(
307-
runs,
308-
activeColumns,
309-
{ classes: getRowClasses },
310-
{
311-
profile: 'runsPerDataPass',
312-
...displayOptions,
313-
},
314-
{ sort: sortModel },
315-
),
316-
// ]),
303+
table(
304+
runs,
305+
activeColumns,
306+
{ classes: getRowClasses },
307+
{
308+
profile: 'runsPerDataPass',
309+
...displayOptions,
310+
},
311+
{ sort: sortModel },
312+
),
317313
paginationComponent(perDataPassOverviewModel.pagination),
318314
];
319315
},

0 commit comments

Comments
 (0)