diff options
| author | Luc Donnet | 2014-10-30 14:31:54 +0100 | 
|---|---|---|
| committer | Luc Donnet | 2014-10-30 14:31:54 +0100 | 
| commit | c9a4f4462092881d9585ee35b303fd6020b829a6 (patch) | |
| tree | aa43a31ccb62096bcb4f49eb205744f6ab3f8e15 /app/views/group_of_lines | |
| parent | 512c33455f4f14d063a431ea4d5b352e341c1c76 (diff) | |
| download | chouette-core-c9a4f4462092881d9585ee35b303fd6020b829a6.tar.bz2 | |
Fix line name for group of line edit Refs #0029649
Diffstat (limited to 'app/views/group_of_lines')
| -rw-r--r-- | app/views/group_of_lines/_form.erb | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/app/views/group_of_lines/_form.erb b/app/views/group_of_lines/_form.erb index 3c685964b..a0ef4a4c4 100644 --- a/app/views/group_of_lines/_form.erb +++ b/app/views/group_of_lines/_form.erb @@ -6,7 +6,7 @@    <% end %>    <%= form.inputs do %> -    <%= form.input :line_tokens, :label => t('.lines'), :as => :text,  :input_html => { :"data-pre" => ( @group_of_line.lines.map { |line| { :id => line.id, :name => line.published_name } } ).to_json }  %> +    <%= form.input :line_tokens, :label => t('.lines'), :as => :text,  :input_html => { :"data-pre" => ( @group_of_line.lines.map { |line| { :id => line.id, :name => line.name } } ).to_json }  %>    <% end %>     <%= form.actions do %> | 
