diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2014-11-23 13:45:24 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2014-11-23 13:45:24 +0000 |
commit | 1e0045e69bb5ae0787d207fa9b65163231b737b7 (patch) | |
tree | 080f0c4fd01cc79402ed053fb67e862bb5836364 /app/views/settings | |
parent | e0a034164f3409336f686cfa381da8a5db15c40e (diff) | |
download | redmine-1e0045e69bb5ae0787d207fa9b65163231b737b7.tar.gz redmine-1e0045e69bb5ae0787d207fa9b65163231b737b7.zip |
Removed duplicate element ids.
git-svn-id: http://svn.redmine.org/redmine/trunk@13644 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/settings')
-rw-r--r-- | app/views/settings/_repositories.html.erb | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/app/views/settings/_repositories.html.erb b/app/views/settings/_repositories.html.erb index f54c219ac..b3c5b1b16 100644 --- a/app/views/settings/_repositories.html.erb +++ b/app/views/settings/_repositories.html.erb @@ -96,12 +96,13 @@ options_for_select( [[l(:label_all), ""]] + Tracker.sorted.map {|t| [t.name, t.id.to_s]}, - rule['if_tracker_id']) + rule['if_tracker_id']), + :id => nil ) %> </td> <td> <%= text_field_tag("settings[commit_update_keywords][keywords][]", - rule['keywords'], :size => 30) %> + rule['keywords'], :id => nil, :size => 30) %> </td> <td> <%= select_tag("settings[commit_update_keywords][status_id][]", @@ -109,7 +110,8 @@ [["", 0]] + IssueStatus.sorted. collect{|status| [status.name, status.id.to_s]}, - rule['status_id']) + rule['status_id']), + :id => nil ) %> </td> <td> @@ -117,7 +119,8 @@ options_for_select( [["", ""]] + (0..10).to_a.collect {|r| ["#{r*10} %", "#{r*10}"] }, - rule['done_ratio']) + rule['done_ratio']), + :id => nil ) %> </td> <td class="buttons"> |