Browse Source

feat(lib): implement inject functions in accounts table

pull/6301/head
KenTandrian 21 hours 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 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(
private notificationService: NotificationService,
private router: Router
) {
public constructor() {
addIcons({
arrowRedoOutline,
createOutline,

Loading…
Cancel
Save