mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-08-21 05:43:19 -07:00
fix(radarr-settings): Make the constructor arguments readonly
This commit is contained in:
parent
cc632bfd0f
commit
35d745479f
1 changed files with 4 additions and 4 deletions
|
@ -28,10 +28,10 @@ export class RadarrComponent implements OnInit, OnDestroy {
|
||||||
private readonly destroyed$: Subject<void>;
|
private readonly destroyed$: Subject<void>;
|
||||||
|
|
||||||
constructor(
|
constructor(
|
||||||
private radarrFacade: RadarrFacade,
|
private readonly radarrFacade: RadarrFacade,
|
||||||
private notificationService: NotificationService,
|
private readonly notificationService: NotificationService,
|
||||||
private featureFacade: FeaturesFacade,
|
private readonly featureFacade: FeaturesFacade,
|
||||||
fb: UntypedFormBuilder
|
readonly fb: UntypedFormBuilder
|
||||||
) {
|
) {
|
||||||
this.form4k$ = new ReplaySubject();
|
this.form4k$ = new ReplaySubject();
|
||||||
this.normalForm$ = new ReplaySubject();
|
this.normalForm$ = new ReplaySubject();
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue