We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3dc73f9 commit 0905a53Copy full SHA for 0905a53
1 file changed
src/app/shared/log-in/log-in.component.html
@@ -1,7 +1,7 @@
1
<ds-themed-loading *ngIf="(loading | async) || (isAuthenticated | async)" class="m-5"></ds-themed-loading>
2
<div *ngIf="!(loading | async) && !(isAuthenticated | async)" class="px-4 py-3 mx-auto login-container">
3
<ng-container *ngFor="let authMethod of getOrderedAuthMethods(authMethods | async); let last = last">
4
- <div [class.d-none]="contentRef.innerText.trim().length === 0">
+ <div [class.d-none]="contentRef.innerText?.trim().length === 0">
5
<div #contentRef>
6
<ds-log-in-container [authMethod]="authMethod" [isStandalonePage]="isStandalonePage"></ds-log-in-container>
7
</div>
0 commit comments