Merge branch 'feature-relationship-versioning-7.2' into feature-relationship-versioning

This commit is contained in:
Bruno Roemers
2022-06-14 11:14:35 +02:00
3 changed files with 5 additions and 5 deletions

View File

@@ -171,12 +171,12 @@ export class AppComponent implements OnInit, AfterViewInit {
/** Implement behavior for interface {@link ModalBeforeDismiss} */
this.modalConfig.beforeDismiss = async function () {
if (typeof this?.componentInstance?.beforeDismiss === 'function') {
return this.componentInstance.beforeDismiss()
return this.componentInstance.beforeDismiss();
}
// fall back to default behavior
return true;
}
};
this.isAuthBlocking$ = this.store.pipe(select(isAuthenticationBlocking)).pipe(
distinctUntilChanged()