diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2015-10-14 18:07:49 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2015-10-14 18:07:49 +0000 |
commit | 8da3c8efb41c43622f72ebd0e3a4984928decd02 (patch) | |
tree | d2e93dd544d73163a41a23166acef55f98913731 | |
parent | f9668dfc0d56d03629ea6c10d51b04ab4ed717d6 (diff) | |
download | redmine-8da3c8efb41c43622f72ebd0e3a4984928decd02.tar.gz redmine-8da3c8efb41c43622f72ebd0e3a4984928decd02.zip |
Fixed that triority field is always disabled on parent tasks (#20992).
git-svn-id: http://svn.redmine.org/redmine/trunk@14671 e93f8b46-1217-0410-a6f0-8f06a7374b81
-rw-r--r-- | app/views/issues/_attributes.html.erb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/issues/_attributes.html.erb b/app/views/issues/_attributes.html.erb index 3d5f85c7b..c5c4e8d1b 100644 --- a/app/views/issues/_attributes.html.erb +++ b/app/views/issues/_attributes.html.erb @@ -11,7 +11,7 @@ <% end %> <% if @issue.safe_attribute? 'priority_id' %> -<p><%= f.select :priority_id, (@priorities.collect {|p| [p.name, p.id]}), {:required => true}, :disabled => !@issue.leaf? %></p> +<p><%= f.select :priority_id, (@priorities.collect {|p| [p.name, p.id]}), {:required => true} %></p> <% end %> <% if @issue.safe_attribute? 'assigned_to_id' %> |