Browse Source

Minor improvements

pull/4704/head
Thomas Kaul 4 months ago
parent
commit
20bcbfe7bb
  1. 3
      apps/client/src/app/components/admin-settings/admin-settings.component.ts

3
apps/client/src/app/components/admin-settings/admin-settings.component.ts

@ -145,7 +145,6 @@ export class AdminSettingsComponent implements OnDestroy, OnInit {
}); });
this.dataSource = new MatTableDataSource(filteredProviders); this.dataSource = new MatTableDataSource(filteredProviders);
this.isLoading = false;
this.adminService this.adminService
.fetchGhostfolioDataProviderStatus( .fetchGhostfolioDataProviderStatus(
@ -171,6 +170,8 @@ export class AdminSettingsComponent implements OnDestroy, OnInit {
this.changeDetectorRef.markForCheck(); this.changeDetectorRef.markForCheck();
}); });
this.isLoading = false;
this.changeDetectorRef.markForCheck(); this.changeDetectorRef.markForCheck();
}); });
} }

Loading…
Cancel
Save