aboutsummaryrefslogtreecommitdiffstats
path: root/app/views/group_of_lines
diff options
context:
space:
mode:
authorLuc Donnet2014-10-30 14:31:54 +0100
committerLuc Donnet2014-10-30 14:31:54 +0100
commitc9a4f4462092881d9585ee35b303fd6020b829a6 (patch)
treeaa43a31ccb62096bcb4f49eb205744f6ab3f8e15 /app/views/group_of_lines
parent512c33455f4f14d063a431ea4d5b352e341c1c76 (diff)
downloadchouette-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.erb2
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 %>