diff options
| author | Kamen Mladenov <kamen.d.mladenov@protonmail.com> | 2021-03-29 16:13:24 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-03-29 16:13:24 +0300 |
| commit | b9d5225b7e9f820c28690c243b067cfeb5251d74 (patch) | |
| tree | e06600075ce0b7362d189b45542119e8ecab12c6 /src/app/components/profile/profile.component.html | |
| parent | 64ec7f26f91ffaad64dbd47142fb7969ef6ea32c (diff) | |
| parent | aca037a2ac750faf7606f324478fa5fce220ccc2 (diff) | |
| download | DevHive-Angular-b9d5225b7e9f820c28690c243b067cfeb5251d74.tar DevHive-Angular-b9d5225b7e9f820c28690c243b067cfeb5251d74.tar.gz DevHive-Angular-b9d5225b7e9f820c28690c243b067cfeb5251d74.zip | |
Merge pull request #4 from Team-Kaleidoscope/click-sec-info
Click sec info
Diffstat (limited to 'src/app/components/profile/profile.component.html')
| -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> |
