File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -24,6 +24,7 @@ import { qcFlagsBreadcrumbs } from '../../../components/qcFlags/qcFlagsBreadcrum
2424import errorAlert from '../../../components/common/errorAlert.js' ;
2525import spinner from '../../../components/common/spinner.js' ;
2626import { remoteDplDetectorUserHasAccessTo } from '../../../services/detectors/remoteDplDetectorUserHasAccessTo.js' ;
27+ import { paginationComponent } from '../../../components/Pagination/paginationComponent.js' ;
2728
2829const TABLEROW_HEIGHT = 35 ;
2930// Estimate of the navbar and pagination elements height total; Needs to be updated in case of changes;
@@ -45,6 +46,7 @@ export const QcFlagsForDataPassOverviewPage = ({
4546 dplDetector : remoteDplDetector ,
4647 items : remoteQcFlags ,
4748 sortModel,
49+ pagination : paginationModel ,
4850 } = qcFlagsForDataPassOverviewModel ;
4951
5052 qcFlagsForDataPassOverviewModel . pagination . provideDefaultItemsPerPage ( estimateDisplayableRowsCount (
@@ -101,6 +103,7 @@ export const QcFlagsForDataPassOverviewPage = ({
101103 null ,
102104 { sort : sortModel } ,
103105 ) ,
106+ paginationComponent ( paginationModel ) ,
104107 ] ) ,
105108 ] ,
106109 Loading : ( ) => spinner ( ) ,
Original file line number Diff line number Diff line change @@ -46,13 +46,6 @@ export class QcFlagsOverviewModel extends OverviewPageModel {
4646 super . load ( ) ;
4747 }
4848
49- /**
50- * @inheritdoc
51- */
52- getLoadParameters ( ) {
53- return { } ;
54- }
55-
5649 /**
5750 * Fetch DPL detector which QC flags should be fetched
5851 * @return {void }
You can’t perform that action at this time.
0 commit comments