Skip to content

Commit aa666f9

Browse files
committed
rename
1 parent 1078995 commit aa666f9

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ export class RunsPerLhcPeriodOverviewModel extends RunsWithQcModel {
3434
*/
3535
constructor(model) {
3636
super(model);
37-
this._detectors$ = detectorsProvider.physical$;
38-
this._detectors$.bubbleTo(this);
37+
this._onlineDetectors$ = detectorsProvider.physical$;
38+
this._onlineDetectors$.bubbleTo(this);
3939

4040
this._syncDetectors$ = ObservableData
4141
.builder()
@@ -87,8 +87,8 @@ export class RunsPerLhcPeriodOverviewModel extends RunsWithQcModel {
8787
*
8888
* @return {RemoteData<Detector[]>} detectors
8989
*/
90-
get detectors() {
91-
return this._detectors$.getCurrent();
90+
get onlineDetectors() {
91+
return this._onlineDetectors$.getCurrent();
9292
}
9393

9494
/**

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ export const RunsPerLhcPeriodOverviewPage = ({ runs: { perLhcPeriodOverviewModel
5353

5454
const {
5555
items: remoteRuns,
56-
detectors: remoteOnlineDetectors,
56+
onlineDetectors: remoteOnlineDetectors,
5757
syncDetectors: remoteSyncDetectors,
5858
lhcPeriodName,
5959
displayOptions,

0 commit comments

Comments
 (0)