Skip to content

Commit a7b7ea4

Browse files
committed
fix per simulation pass
1 parent 852c5f0 commit a7b7ea4

1 file changed

Lines changed: 12 additions & 14 deletions

File tree

lib/public/views/Runs/RunsPerSimulationPass/RunsPerSimulationPassOverviewPage.js

Lines changed: 12 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ export const RunsPerSimulationPassOverviewPage = ({
6868

6969
const commonTitle = h('h2', 'Runs per MC');
7070

71-
return h('', mergeRemoteData([remoteSimulationPass, remoteRuns, remoteDetectors, remoteQcSummary]).match({
71+
return h('.intermediate-flex-column', mergeRemoteData([remoteSimulationPass, remoteRuns, remoteDetectors, remoteQcSummary]).match({
7272
NotAsked: () => null,
7373
Failure: (errors) => errorAlert(errors),
7474
Success: ([simulationPass, runs, detectors, qcSummary]) => {
@@ -111,19 +111,17 @@ export const RunsPerSimulationPassOverviewPage = ({
111111
},
112112
),
113113
]),
114-
h('.flex-column.w-100', [
115-
table(
116-
runs,
117-
activeColumns,
118-
{ classes: getRowClasses },
119-
{
120-
profile: 'runsPerSimulationPass',
121-
...displayOptions,
122-
},
123-
{ sort: sortModel },
124-
),
125-
paginationComponent(perSimulationPassOverviewModel.pagination),
126-
]),
114+
table(
115+
runs,
116+
activeColumns,
117+
{ classes: getRowClasses },
118+
{
119+
profile: 'runsPerSimulationPass',
120+
...displayOptions,
121+
},
122+
{ sort: sortModel },
123+
),
124+
paginationComponent(perSimulationPassOverviewModel.pagination),
127125
];
128126
},
129127
Loading: () => spinner(),

0 commit comments

Comments
 (0)