diff options
| author | Syndamia <kamen.d.mladenov@protonmail.com> | 2021-03-29 15:47:49 +0300 |
|---|---|---|
| committer | Syndamia <kamen.d.mladenov@protonmail.com> | 2021-03-29 15:47:49 +0300 |
| commit | 6ec265cccd1abbb5cff68d95757a2e680c8e9e06 (patch) | |
| tree | 93cb6a32266f718a2e1a3d17b1d37ce8f538272e | |
| parent | ab8122e2cbeefe55b7dca1aeeb1cbaf830ed25b5 (diff) | |
| download | DevHive-Angular-6ec265cccd1abbb5cff68d95757a2e680c8e9e06.tar DevHive-Angular-6ec265cccd1abbb5cff68d95757a2e680c8e9e06.tar.gz DevHive-Angular-6ec265cccd1abbb5cff68d95757a2e680c8e9e06.zip | |
Fixed languages and technologies being ordered in a column in profile page
| -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> |
