Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ import { qcFlagsBreadcrumbs } from '../../../components/qcFlags/qcFlagsBreadcrum
import errorAlert from '../../../components/common/errorAlert.js';
import spinner from '../../../components/common/spinner.js';
import { remoteDplDetectorUserHasAccessTo } from '../../../services/detectors/remoteDplDetectorUserHasAccessTo.js';
import { paginationComponent } from '../../../components/Pagination/paginationComponent.js';

const TABLEROW_HEIGHT = 35;
// Estimate of the navbar and pagination elements height total; Needs to be updated in case of changes;
Expand All @@ -45,6 +46,7 @@ export const QcFlagsForDataPassOverviewPage = ({
dplDetector: remoteDplDetector,
items: remoteQcFlags,
sortModel,
pagination: paginationModel,
} = qcFlagsForDataPassOverviewModel;

qcFlagsForDataPassOverviewModel.pagination.provideDefaultItemsPerPage(estimateDisplayableRowsCount(
Expand Down Expand Up @@ -101,6 +103,7 @@ export const QcFlagsForDataPassOverviewPage = ({
null,
{ sort: sortModel },
),
paginationComponent(paginationModel),
]),
],
Loading: () => spinner(),
Expand Down
7 changes: 0 additions & 7 deletions lib/public/views/QcFlags/Overview/QcFlagsOverviewModel.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,13 +46,6 @@ export class QcFlagsOverviewModel extends OverviewPageModel {
super.load();
}

/**
* @inheritdoc
*/
getLoadParameters() {
return {};
}

/**
* Fetch DPL detector which QC flags should be fetched
* @return {void}
Expand Down
Loading