Browse Source

Fix loading

pull/6034/head
Thomas Kaul 2 weeks ago
parent
commit
b1ac74bc06
  1. 5
      apps/client/src/app/pages/portfolio/fire/fire-page.component.ts

5
apps/client/src/app/pages/portfolio/fire/fire-page.component.ts

@ -86,8 +86,6 @@ export class GfFirePageComponent implements OnDestroy, OnInit {
this.calculateWithdrawalRates();
this.isLoading = false;
this.changeDetectorRef.markForCheck();
});
@ -221,7 +219,10 @@ export class GfFirePageComponent implements OnDestroy, OnInit {
public onCalculationComplete(calculation: FireCalculation) {
this.fireCalculation = calculation;
this.calculateProjectedWithdrawalRates();
this.isLoading = false;
}
public ngOnDestroy() {

Loading…
Cancel
Save