Skip to content

Commit

Permalink
fix/batch-fixes-dec-28
Browse files Browse the repository at this point in the history
  • Loading branch information
Leonardo Mendoza Fernadez authored and Leonardo Mendoza Fernadez committed Dec 28, 2023
1 parent ee5b693 commit 0d72105
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 4 deletions.
5 changes: 4 additions & 1 deletion src/app/core/title-service/title.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,10 @@ export class TitleService {
}

setTitle(title: string) {
if (title) this._titleService.setTitle(title.replace(/-'/g, '−'))
if (title) {
title = title.replace(/-/g, '᭸')
this._titleService.setTitle(title)
}
}

setDisplayName(displayedNameWithId: string) {
Expand Down
2 changes: 0 additions & 2 deletions src/app/layout/user-menu/user-menu.component.scss
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,6 @@
width: 199px;
overflow: hidden;
text-overflow: ellipsis;
text-align: left;
text-align: left;
white-space: initial;
word-break: break-word;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,16 @@
You are signed into
</ng-container>
<b>{{ entityDisplayName }}</b>
<ng-container i18n="@@linking.as"> as </ng-container>
<ng-container
i18n="@@linking.as"
*ngIf="
!signInData.email &&
!signInData.firstName &&
!signInData.lastName
"
>
as
</ng-container>
<b>
{{
signInData.email
Expand Down

0 comments on commit 0d72105

Please sign in to comment.