Browse Source

add space after comma to ApplicationHelper

git-svn-id: http://svn.redmine.org/redmine/trunk@20129 e93f8b46-1217-0410-a6f0-8f06a7374b81
tags/4.2.0
Toshi MARUYAMA 3 years ago
parent
commit
a885adcfae
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      app/helpers/application_helper.rb

+ 1
- 1
app/helpers/application_helper.rb View File

@@ -203,7 +203,7 @@ module ApplicationHelper
'Project' => ->(project) {link_to_project(project)},
'User' => ->(user) {link_to_user(user)},
'Version' => ->(version) {link_to_version(version)},
'WikiPage' => ->(wiki_page) {link_to(wiki_page.pretty_title,project_wiki_page_path(wiki_page.project, wiki_page.title))}
'WikiPage' => ->(wiki_page) {link_to(wiki_page.pretty_title, project_wiki_page_path(wiki_page.project, wiki_page.title))}
}

def link_to_record(record)

Loading…
Cancel
Save