1
0
mirror of https://github.com/meineerde/redmine.git synced 2025-12-20 07:21:12 +00:00

cleanup: rubocop: fix Layout/ClosingParenthesisIndentation in app/helpers/repositories_helper.rb

git-svn-id: http://svn.redmine.org/redmine/trunk@19193 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA 2019-11-23 09:04:57 +00:00
parent 741aa901b0
commit 9736894e32

View File

@ -171,8 +171,8 @@ module RepositoriesHelper
:url, :label => l(:field_path_to_repository),
:size => 60, :required => true,
:disabled => !repository.safe_attribute?('url')
) +
scm_path_info_tag(repository)) +
) +
scm_path_info_tag(repository)) +
scm_path_encoding_tag(form, repository)
end
@ -181,13 +181,13 @@ module RepositoriesHelper
:url, :label => l(:field_path_to_repository),
:size => 60, :required => true,
:disabled => !repository.safe_attribute?('url')
) +
scm_path_info_tag(repository)) +
) +
scm_path_info_tag(repository)) +
scm_path_encoding_tag(form, repository) +
content_tag('p', form.check_box(
:report_last_commit,
:label => l(:label_git_report_last_commit)
))
))
end
def cvs_field_tags(form, repository)