Browse Source

feat(lib): remove ngOnDestroy

pull/6402/head
Kenrick Tandrian 1 month ago
parent
commit
fa02d083bf
  1. 7
      libs/ui/src/lib/currency-selector/currency-selector.component.ts

7
libs/ui/src/lib/currency-selector/currency-selector.component.ts

@ -8,7 +8,6 @@ import {
DoCheck,
ElementRef,
Input,
OnDestroy,
OnInit,
ViewChild,
inject,
@ -62,7 +61,7 @@ import { AbstractMatFormField } from '../shared/abstract-mat-form-field';
})
export class GfCurrencySelectorComponent
extends AbstractMatFormField<string | null>
implements DoCheck, OnDestroy, OnInit
implements DoCheck, OnInit
{
@ViewChild('currencyAutocomplete')
public currencyAutocomplete: MatAutocomplete;
@ -152,10 +151,6 @@ export class GfCurrencySelectorComponent
super.value = option.value;
}
public ngOnDestroy() {
super.ngOnDestroy();
}
private filter(value: string) {
const filterValue = value.toLowerCase();

Loading…
Cancel
Save