15 lines
754 B
Text
15 lines
754 B
Text
= form_for @application_setting, url: general_admin_application_settings_path(anchor: 'js-merge-request-settings'), html: { class: 'fieldset-form' } do |f|
|
|
= form_errors(@application_setting)
|
|
|
|
%fieldset
|
|
.form-group
|
|
= f.label :diff_max_patch_bytes, 'Maximum diff patch size (Bytes)', class: 'label-light'
|
|
= f.number_field :diff_max_patch_bytes, class: 'form-control gl-form-input'
|
|
%span.form-text.text-muted
|
|
Diff files surpassing this limit will be presented as 'too large'
|
|
and won't be expandable.
|
|
|
|
= link_to sprite_icon('question-o'),
|
|
help_page_path('user/admin_area/diff_limits',
|
|
anchor: 'maximum-diff-patch-size')
|
|
= f.submit _('Save changes'), class: 'gl-button btn btn-confirm'
|