Commit 43288d8f authored by Enrique Alcántara's avatar Enrique Alcántara

Merge branch 'fix-bio-rendering-on-profile' into 'master'

Fix bio rendering on profile page

See merge request gitlab-org/gitlab!37572
parents bb2b2477 50c11526
...@@ -75,7 +75,7 @@ export default { ...@@ -75,7 +75,7 @@ export default {
<div class="gl-text-gray-700"> <div class="gl-text-gray-700">
<div v-if="user.bio" class="gl-display-flex gl-mb-2"> <div v-if="user.bio" class="gl-display-flex gl-mb-2">
<icon name="profile" class="gl-text-gray-600 gl-flex-shrink-0" /> <icon name="profile" class="gl-text-gray-600 gl-flex-shrink-0" />
<span ref="bio" class="ml-1" v-html="user.bioHtml"></span> <span ref="bio" class="gl-ml-2" v-html="user.bioHtml"></span>
</div> </div>
<div v-if="user.workInformation" class="gl-display-flex gl-mb-2"> <div v-if="user.workInformation" class="gl-display-flex gl-mb-2">
<icon name="work" class="gl-text-gray-600 gl-flex-shrink-0" /> <icon name="work" class="gl-text-gray-600 gl-flex-shrink-0" />
......
...@@ -84,7 +84,7 @@ ...@@ -84,7 +84,7 @@
= link_to @user.public_email, "mailto:#{@user.public_email}", class: 'text-link' = link_to @user.public_email, "mailto:#{@user.public_email}", class: 'text-link'
- if @user.bio.present? - if @user.bio.present?
.cover-desc.cgray .cover-desc.cgray
%p.profile-user-bio .profile-user-bio
= markdown(@user.bio_html) = markdown(@user.bio_html)
......
---
title: Fix bio container width on profile page
merge_request: 37572
author:
type: fixed
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment