Browse Source

feat(lib): implement inject functions in accounts table

pull/6301/head
KenTandrian 1 day ago
parent
commit
a2dea0cc1e
  1. 9
      libs/ui/src/lib/accounts-table/accounts-table.component.ts

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

@ -81,12 +81,11 @@ export class GfAccountsTableComponent implements OnChanges, OnDestroy {
public isLoading = true; public isLoading = true;
public routeQueryParams: Subscription; public routeQueryParams: Subscription;
private unsubscribeSubject = new Subject<void>(); private readonly notificationService = inject(NotificationService);
private readonly router = inject(Router);
private readonly unsubscribeSubject = new Subject<void>();
public constructor( public constructor() {
private notificationService: NotificationService,
private router: Router
) {
addIcons({ addIcons({
arrowRedoOutline, arrowRedoOutline,
createOutline, createOutline,

Loading…
Cancel
Save