Skip to content

Commit

Permalink
Fix translation for service type on service index
Browse files Browse the repository at this point in the history
  • Loading branch information
abisosa committed Apr 16, 2015
1 parent 18f6dde commit 616a830
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion app/views/admins/dashboards/services.html.haml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,9 @@
- @services.each do |service|
%tr
%td= service.name
%td= service.service_type
%td
- if service.service_type.present?
= t(".service_type_options.#{service.service_type}")
%td= service.dependency
%td= service.administrative_unit
%td= service.cis

0 comments on commit 616a830

Please sign in to comment.