From 35d745479ff4c808f762aed8b1f1c8c8dd147084 Mon Sep 17 00:00:00 2001 From: Alexandre Picavet Date: Fri, 3 Jan 2025 12:34:56 +0100 Subject: [PATCH] fix(radarr-settings): Make the constructor arguments readonly --- .../ClientApp/src/app/settings/radarr/radarr.component.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Ombi/ClientApp/src/app/settings/radarr/radarr.component.ts b/src/Ombi/ClientApp/src/app/settings/radarr/radarr.component.ts index 840e03301..46014230e 100644 --- a/src/Ombi/ClientApp/src/app/settings/radarr/radarr.component.ts +++ b/src/Ombi/ClientApp/src/app/settings/radarr/radarr.component.ts @@ -28,10 +28,10 @@ export class RadarrComponent implements OnInit, OnDestroy { private readonly destroyed$: Subject; constructor( - private radarrFacade: RadarrFacade, - private notificationService: NotificationService, - private featureFacade: FeaturesFacade, - fb: UntypedFormBuilder + private readonly radarrFacade: RadarrFacade, + private readonly notificationService: NotificationService, + private readonly featureFacade: FeaturesFacade, + readonly fb: UntypedFormBuilder ) { this.form4k$ = new ReplaySubject(); this.normalForm$ = new ReplaySubject();