aboutsummaryrefslogtreecommitdiff
path: root/src/app/components/profile
diff options
context:
space:
mode:
authorKamen Mladenov <kamen.d.mladenov@protonmail.com>2021-03-29 16:13:24 +0300
committerGitHub <noreply@github.com>2021-03-29 16:13:24 +0300
commitb9d5225b7e9f820c28690c243b067cfeb5251d74 (patch)
treee06600075ce0b7362d189b45542119e8ecab12c6 /src/app/components/profile
parent64ec7f26f91ffaad64dbd47142fb7969ef6ea32c (diff)
parentaca037a2ac750faf7606f324478fa5fce220ccc2 (diff)
downloadDevHive-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')
-rw-r--r--src/app/components/profile/profile.component.html8
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>