Browse Source
Feature/add missing lifecycle hook in historical market data editor dialog (#4456)
* Add OnInit
pull/4387/head
Thomas Kaul
3 days ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
5 additions and
2 deletions
-
libs/ui/src/lib/historical-market-data-editor/historical-market-data-editor-dialog/historical-market-data-editor-dialog.component.ts
|
|
@ -7,7 +7,8 @@ import { |
|
|
|
Component, |
|
|
|
CUSTOM_ELEMENTS_SCHEMA, |
|
|
|
Inject, |
|
|
|
OnDestroy |
|
|
|
OnDestroy, |
|
|
|
OnInit |
|
|
|
} from '@angular/core'; |
|
|
|
import { FormsModule, ReactiveFormsModule } from '@angular/forms'; |
|
|
|
import { MatButtonModule } from '@angular/material/button'; |
|
|
@ -41,7 +42,9 @@ import { HistoricalMarketDataEditorDialogParams } from './interfaces/interfaces' |
|
|
|
styleUrls: ['./historical-market-data-editor-dialog.scss'], |
|
|
|
templateUrl: 'historical-market-data-editor-dialog.html' |
|
|
|
}) |
|
|
|
export class GfHistoricalMarketDataEditorDialogComponent implements OnDestroy { |
|
|
|
export class GfHistoricalMarketDataEditorDialogComponent |
|
|
|
implements OnDestroy, OnInit |
|
|
|
{ |
|
|
|
private unsubscribeSubject = new Subject<void>(); |
|
|
|
|
|
|
|
public constructor( |
|
|
|