Skip to content

Commit 1399681

Browse files
committed
fix
1 parent 86ffd63 commit 1399681

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

lib/public/views/Runs/RunPerPeriod/RunsPerLhcPeriodOverviewModel.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,6 +171,6 @@ class RunsPerLhcPeriodTabbedPanelModel extends TabbedPanelModel {
171171
*/
172172
set lhcPeriodId(lhcPeriodId) {
173173
this._lhcPeriodId = lhcPeriodId;
174-
this.currentPanelData = null;
174+
this._fetchCurrentPanelData();
175175
}
176176
}

lib/public/views/Runs/RunPerPeriod/RunsPerLhcPeriodOverviewPage.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ export const RunsPerLhcPeriodOverviewPage = ({ runs: { perLhcPeriodOverviewModel
130130
[RUNS_PER_LHC_PERIOD_PANELS_KEYS.SYNCHRONOUS_FLAGS]:
131131
(remoteSynchronousQcSummary) => getTableWithGivenDetectorsColumns(runs, runDetectorsSyncQcActiveColumns(detectors, {
132132
profiles: 'runsPerLhcPeriod',
133-
qcSummary: remoteSynchronousQcSummary.match({ Success: (qcSummary) => qcSummary, Other: () => null }),
133+
qcSummary: remoteSynchronousQcSummary?.match({ Success: (qcSummary) => qcSummary, Other: () => null }),
134134
})),
135135
},
136136
{ panelClass: ['scroll-auto'] },

0 commit comments

Comments
 (0)