no need for async

This commit is contained in:
Kyle Spearrin 2019-11-07 11:25:20 -05:00
parent 4e9759cd62
commit ef49001418
1 changed files with 1 additions and 1 deletions

View File

@ -626,7 +626,7 @@ export class VaultComponent implements OnInit, OnDestroy {
}
private functionWithChangeDetection(func: Function) {
this.ngZone.run(async () => {
this.ngZone.run(() => {
func();
this.changeDetectorRef.detectChanges();
});