diff options
author | Louise Crow <louise.crow@gmail.com> | 2015-04-07 11:57:38 +0100 |
---|---|---|
committer | Louise Crow <louise.crow@gmail.com> | 2015-04-07 11:57:38 +0100 |
commit | ffb17f312c312fdba49ab961520d423bdde22503 (patch) | |
tree | 640f364c8704449df1537c7f9149df674e8132d5 /app/helpers | |
parent | 77eda53b4348d557c22047f7923f77b0077d9ed3 (diff) | |
parent | b7fcc17562efc0a6073f9d00bfbe137ca85f0038 (diff) |
Merge branch 'hotfix/0.21.0.6'0.21.0.6
Conflicts:
config/initializers/alaveteli.rb
Diffstat (limited to 'app/helpers')
-rw-r--r-- | app/helpers/public_body_helper.rb | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/app/helpers/public_body_helper.rb b/app/helpers/public_body_helper.rb index 332e93284..57c90a9ba 100644 --- a/app/helpers/public_body_helper.rb +++ b/app/helpers/public_body_helper.rb @@ -38,12 +38,13 @@ module PublicBodyHelper # # Returns a string def type_of_authority(public_body) - types = public_body.tags.each_with_index.map do |tag, index| + first = true + types = public_body.tags.each.map do |tag| if PublicBodyCategory.get().by_tag().include?(tag.name) desc = PublicBodyCategory.get().singular_by_tag()[tag.name] - - if index.zero? + if first desc = desc.sub(/\S/) { |m| Unicode.upcase(m) } + first = false end link_to(desc, list_public_bodies_path(tag.name)) end |