diff options
Diffstat (limited to 'src/app/components')
| -rw-r--r-- | src/app/components/profile/profile.component.html | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/app/components/profile/profile.component.html b/src/app/components/profile/profile.component.html index 7de1d09..1a360fc 100644 --- a/src/app/components/profile/profile.component.html +++ b/src/app/components/profile/profile.component.html @@ -29,8 +29,8 @@ <div class="none-message" *ngIf="user.languages.length === 0"> None </div> - <div class="flex-row" *ngFor="let lang of user.languages"> - <div class="sec-info border-radius-dot5r padding-dot2"> + <div class="flex-row"> + <div class="sec-info border-radius-dot5r padding-dot2" *ngFor="let lang of user.languages"> {{ lang.name }} </div> </div> @@ -42,8 +42,8 @@ <div class="none-message" *ngIf="user.technologies.length === 0"> None </div> - <div class="flex-row" *ngFor="let tech of user.technologies"> - <div class="sec-info border-radius-dot5r padding-dot2"> + <div class="flex-row"> + <div class="sec-info border-radius-dot5r padding-dot2" *ngFor="let tech of user.technologies"> {{ tech.name }} </div> </div> |
