Browse Source

feat(lib): remove ngOnChanges

pull/6301/head
KenTandrian 23 hours ago
parent
commit
949fcd5095
  1. 7
      libs/ui/src/lib/accounts-table/accounts-table.component.ts

7
libs/ui/src/lib/accounts-table/accounts-table.component.ts

@ -10,7 +10,6 @@ import {
Component, Component,
EventEmitter, EventEmitter,
Input, Input,
OnChanges,
OnDestroy, OnDestroy,
Output, Output,
computed, computed,
@ -56,7 +55,7 @@ import { Subject } from 'rxjs';
styleUrls: ['./accounts-table.component.scss'], styleUrls: ['./accounts-table.component.scss'],
templateUrl: './accounts-table.component.html' templateUrl: './accounts-table.component.html'
}) })
export class GfAccountsTableComponent implements OnChanges, OnDestroy { export class GfAccountsTableComponent implements OnDestroy {
@Input() activitiesCount: number; @Input() activitiesCount: number;
@Input() baseCurrency: string; @Input() baseCurrency: string;
@Input() deviceType: string; @Input() deviceType: string;
@ -138,10 +137,6 @@ export class GfAccountsTableComponent implements OnChanges, OnDestroy {
}); });
} }
public ngOnChanges() {
return;
}
public onDeleteAccount(aId: string) { public onDeleteAccount(aId: string) {
this.notificationService.confirm({ this.notificationService.confirm({
confirmFn: () => { confirmFn: () => {

Loading…
Cancel
Save