diff options
author | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2014-06-16 22:31:15 +0300 |
---|---|---|
committer | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2014-06-16 22:31:15 +0300 |
commit | 085a93d4a513dd661d57f2a9a5141e2c6b5680a2 (patch) | |
tree | 14bcbb6619fcf0508e00d172d4058e302a4cc1cf /app/helpers/icons_helper.rb | |
parent | 6a73124df230594b7ce5d516977d6074a027a914 (diff) | |
download | gitlab-ce-085a93d4a513dd661d57f2a9a5141e2c6b5680a2.tar.gz |
Replace ok with circle for boolean icon
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
Diffstat (limited to 'app/helpers/icons_helper.rb')
-rw-r--r-- | app/helpers/icons_helper.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/helpers/icons_helper.rb b/app/helpers/icons_helper.rb index 53d4a8f2e6e..f0f771b4ba0 100644 --- a/app/helpers/icons_helper.rb +++ b/app/helpers/icons_helper.rb @@ -1,7 +1,7 @@ module IconsHelper def boolean_to_icon(value) if value.to_s == "true" - content_tag :i, nil, class: 'icon-ok cgreen' + content_tag :i, nil, class: 'icon-circle cgreen' else content_tag :i, nil, class: 'icon-off clgray' end |