mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-15 07:36:41 +10:00
changes display for empty brand_logo
This commit is contained in:
@@ -8,13 +8,15 @@ module AppearancesHelper
|
||||
end
|
||||
|
||||
def brand_image
|
||||
logo = if brand_item
|
||||
brand_item.logo
|
||||
else
|
||||
'brand_logo.png'
|
||||
end
|
||||
|
||||
image_tag logo
|
||||
if brand_item
|
||||
if brand_item.logo?
|
||||
image_tag brand_item.logo
|
||||
else
|
||||
nil
|
||||
end
|
||||
else
|
||||
image_tag 'brand_logo.png'
|
||||
end
|
||||
end
|
||||
|
||||
def brand_text
|
||||
|
||||
@@ -17,7 +17,7 @@
|
||||
.form-group
|
||||
= f.label :logo, class: 'control-label'
|
||||
.col-sm-10
|
||||
- if @appearance.logo
|
||||
- if @appearance.logo?
|
||||
= image_tag @appearance.logo, class: 'appearance-logo-preview'
|
||||
= f.file_field :logo, class: ""
|
||||
.hint
|
||||
|
||||
Reference in New Issue
Block a user