aboutsummaryrefslogtreecommitdiff
path: root/src/app/components
diff options
context:
space:
mode:
authorSyndamia <kamen.d.mladenov@protonmail.com>2021-03-29 15:47:49 +0300
committerSyndamia <kamen.d.mladenov@protonmail.com>2021-03-29 15:47:49 +0300
commit6ec265cccd1abbb5cff68d95757a2e680c8e9e06 (patch)
tree93cb6a32266f718a2e1a3d17b1d37ce8f538272e /src/app/components
parentab8122e2cbeefe55b7dca1aeeb1cbaf830ed25b5 (diff)
downloadDevHive-Angular-6ec265cccd1abbb5cff68d95757a2e680c8e9e06.tar
DevHive-Angular-6ec265cccd1abbb5cff68d95757a2e680c8e9e06.tar.gz
DevHive-Angular-6ec265cccd1abbb5cff68d95757a2e680c8e9e06.zip
Fixed languages and technologies being ordered in a column in profile page
Diffstat (limited to 'src/app/components')
-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>