diff options
author | Marc Schwede <git@schwedenmut.de> | 2019-07-24 21:28:26 +0000 |
---|---|---|
committer | Paul Slaughter <pslaughter@gitlab.com> | 2019-07-24 21:28:26 +0000 |
commit | 2246bb7d22498565d77c4b8fa05f50b27db09ec8 (patch) | |
tree | 067404591d3ace269a84ac6e3c0f9bde0165ecf6 /app/helpers | |
parent | 7595e3ba59680f56e51c8d41579106af33af2f0e (diff) | |
download | gitlab-ce-2246bb7d22498565d77c4b8fa05f50b27db09ec8.tar.gz |
Changed `author_avatar` to inline-block class
Fixes #64746
Diffstat (limited to 'app/helpers')
-rw-r--r-- | app/helpers/avatars_helper.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/helpers/avatars_helper.rb b/app/helpers/avatars_helper.rb index 5906ddabee4..81ff359556d 100644 --- a/app/helpers/avatars_helper.rb +++ b/app/helpers/avatars_helper.rb @@ -52,7 +52,7 @@ module AvatarsHelper user: commit_or_event.author, user_name: commit_or_event.author_name, user_email: commit_or_event.author_email, - css_class: 'd-none d-sm-inline' + css_class: 'd-none d-sm-inline-block' })) end |