1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-09-18 02:41:15 +02:00

detect chages on promise catch

This commit is contained in:
Kyle Spearrin 2018-04-23 11:50:14 -04:00
parent 613dfaafd0
commit 97835f7627

View File

@ -153,8 +153,11 @@ export class CurrentTabComponent implements OnInit, OnDestroy {
BrowserApi.closePopup(window); BrowserApi.closePopup(window);
} }
}).catch(() => { }).catch(() => {
this.analytics.eventTrack.next({ action: 'Autofilled Error' }); this.ngZone.run(() => {
this.toasterService.popAsync('error', null, this.i18nService.t('autofillError')); this.analytics.eventTrack.next({ action: 'Autofilled Error' });
this.toasterService.popAsync('error', null, this.i18nService.t('autofillError'));
this.changeDetectorRef.detectChanges();
});
}); });
// Weird bug in Safari won't allow clipboard copying after a promise call, so we have this workaround // Weird bug in Safari won't allow clipboard copying after a promise call, so we have this workaround