You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Functional: the expected or intended functionality is not provided.
Anonymous users need to be able to register and login as admins if allowed such access.
Developer
A developer needs to locally regiter and login for any tasks restricted to certain access.
Operational
Administrators need to be able to register and login.
The cause of why this is now suddenly a problem is unknown.
The explicit requirement for false is fine boolean logic, but it turns out that it is not actually fine in practice.
The isAuthenticated is now some non-boolean literal value and is instead likely undefined or null.
Inverting the logic to *ngIf="(isAuthenticated | async) !== true" appears to solve the problem.
The text was updated successfully, but these errors were encountered:
User
Anonymous users need to be able to register and login as admins if allowed such access.
Developer
A developer needs to locally regiter and login for any tasks restricted to certain access.
Operational
Administrators need to be able to register and login.
The cause of why this is now suddenly a problem is unknown.
The existing logic here:
scholars-angular/src/app/footer/footer.component.html
Line 8 in 17ef08c
Has logic like:
The explicit requirement for
false
is fine boolean logic, but it turns out that it is not actually fine in practice.The isAuthenticated is now some non-boolean literal value and is instead likely
undefined
ornull
.Inverting the logic to
*ngIf="(isAuthenticated | async) !== true"
appears to solve the problem.The text was updated successfully, but these errors were encountered: