diff options
Diffstat (limited to 'src/app/components/profile/profile.component.html')
| -rw-r--r-- | src/app/components/profile/profile.component.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/app/components/profile/profile.component.html b/src/app/components/profile/profile.component.html index 2a8786d..7632620 100644 --- a/src/app/components/profile/profile.component.html +++ b/src/app/components/profile/profile.component.html @@ -25,7 +25,7 @@ <div class="sec-info-title faded-slim-border border-bottom-only"> Languages </div> - <div *ngIf="user.languages.length === 0"> + <div class="none-message" *ngIf="user.languages.length === 0"> None </div> <div class="flex-row" *ngFor="let lang of user.languages"> @@ -38,7 +38,7 @@ <div class="sec-info-title faded-slim-border border-bottom-only"> Technologies </div> - <div *ngIf="user.technologies.length === 0"> + <div class="none-message" *ngIf="user.technologies.length === 0"> None </div> <div class="flex-row" *ngFor="let tech of user.technologies"> |
