summaryrefslogtreecommitdiff
path: root/app/views/profiles
diff options
context:
space:
mode:
authorEnrique Alcantara <ealcantara@gitlab.com>2019-03-25 16:23:50 -0400
committerEnrique Alcantara <ealcantara@gitlab.com>2019-03-25 16:55:05 -0400
commit6b394a801fb4cb8f598a5f124eb91517a2b705fc (patch)
tree10c74013b9898ce7b0a83779bdac0bcf99820227 /app/views/profiles
parent9ea2c959d9d27b8370e6c1d6c5d77615f318c6d3 (diff)
downloadgitlab-ce-6b394a801fb4cb8f598a5f124eb91517a2b705fc.tar.gz
Fix regressions post bootstrap_form upgrade
Diffstat (limited to 'app/views/profiles')
-rw-r--r--app/views/profiles/show.html.haml4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/views/profiles/show.html.haml b/app/views/profiles/show.html.haml
index 1fffea08dae..02c750a92c3 100644
--- a/app/views/profiles/show.html.haml
+++ b/app/views/profiles/show.html.haml
@@ -99,10 +99,10 @@
.checkbox-icon-inline-wrapper
- private_profile_label = capture do
= s_("Profiles|Don't display activity-related personal information on your profiles")
- = f.check_box :private_profile, label: private_profile_label
+ = f.check_box :private_profile, label: private_profile_label, inline: true, wrapper_class: 'mr-0'
= link_to icon('question-circle'), help_page_path('user/profile/index.md', anchor: 'private-profile')
%h5= s_("Profiles|Private contributions")
- = f.check_box :include_private_contributions, label: 'Include private contributions on my profile'
+ = f.check_box :include_private_contributions, label: 'Include private contributions on my profile', wrapper_class: 'mb-2', inline: true
.help-block
= s_("Profiles|Choose to show contributions of private projects on your public profile without any project, repository or organization information")
.prepend-top-default.append-bottom-default