diff --git a/lib/public/services/detectors/detectorsProvider.js b/lib/public/services/detectors/detectorsProvider.js index 3825835d66..19a5a62830 100644 --- a/lib/public/services/detectors/detectorsProvider.js +++ b/lib/public/services/detectors/detectorsProvider.js @@ -76,11 +76,11 @@ export class DetectorsProvider extends RemoteDataProvider { const { data: detectors } = await getRemoteData('/api/detectors'); const typeToOrderingKey = (type) => switchCase(type, { [DetectorType.OTHER]: 0, - [DetectorType.VIRTUAL]: 1, - [DetectorType.PHYSICAL]: 2, - [DetectorType.AOT_GLO]: 3, - [DetectorType.AOT_EVENT]: 4, - [DetectorType.MUON_GLO]: 5, + [DetectorType.AOT_GLO]: 1, + [DetectorType.AOT_EVENT]: 2, + [DetectorType.MUON_GLO]: 3, + [DetectorType.VIRTUAL]: 4, + [DetectorType.PHYSICAL]: 5, [DetectorType.QC_ONLY]: 6, });