Skip to content

Commit

Permalink
fix: Hard-code text+link to prevent translations-loading issue (#5754)
Browse files Browse the repository at this point in the history
  • Loading branch information
elwinschmitz authored Sep 2, 2024
1 parent 73b5c3f commit c671664
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions interfaces/Portal/src/app/pages/login/login.page.html
Original file line number Diff line number Diff line change
Expand Up @@ -247,12 +247,16 @@ <h1 class="text-uppercase">
</div>
<div *ngIf="!isLogoutForced">
<br />
<small
[innerHTML]="
'page.login.sso.force-logout-try-again-notice' | translate
"
>
<!-- TODO: Hard-coded in to provide users with a working, clickable link; Without any caching-issues or out-of-date-translations -->
<small>
If you have trouble logging in,
<a href="/logout">try to log-out</a> and try again.
</small>
<!-- TODO: Original code kept, to cache translation for future releases (can be removed for upcoming releases) -->
<small
hidden
innerHTML="'page.login.sso.force-logout-try-again-notice' | translate"
></small>
</div>
</form>
</div>
Expand Down

0 comments on commit c671664

Please sign in to comment.