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>;
|
||||
|
||||
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();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue