Fix LFS enabled
select box.
It was not displaying the proper value and had an out of place look to it.
This commit is contained in:
parent
7100b76923
commit
b7e29af0b5
1 changed files with 7 additions and 6 deletions
|
@ -92,14 +92,15 @@
|
|||
= project_feature_access_select(:wiki_access_level)
|
||||
|
||||
- if Gitlab.config.lfs.enabled && current_user.admin?
|
||||
.checkbox
|
||||
= f.label :lfs_enabled do
|
||||
= f.check_box :lfs_enabled
|
||||
%strong LFS
|
||||
%br
|
||||
%span.descr
|
||||
.row
|
||||
.col-md-9
|
||||
= f.label :lfs_enabled, 'LFS', class: 'label-light'
|
||||
%span.help-block
|
||||
Git Large File Storage
|
||||
= link_to icon('question-circle'), help_page_path('workflow/lfs/manage_large_binaries_with_git_lfs')
|
||||
.col-md-3
|
||||
= f.select :lfs_enabled, [%w(Enabled true), %w(Disabled false)], {}, selected: @project.lfs_enabled?, class: 'pull-right form-control', data: { field: 'lfs_enabled' }
|
||||
|
||||
|
||||
- if Gitlab.config.registry.enabled
|
||||
.form-group.js-container-registry{ style: ("display: none;" if @project.project_feature.send(:repository_access_level) == 0) }
|
||||
|
|
Loading…
Reference in a new issue