summaryrefslogtreecommitdiffstats
path: root/app
diff options
context:
space:
mode:
authorJean-Philippe Lang <jp_lang@yahoo.fr>2015-12-13 14:53:11 +0000
committerJean-Philippe Lang <jp_lang@yahoo.fr>2015-12-13 14:53:11 +0000
commit46e1c6a2fea707a07f93c212f4f36b0f407c802e (patch)
tree556feff3fa6a97f03ca97fa45588d0fe6f29d746 /app
parenta5fd84f00eece323b9b43e70cb8f386cd92b762d (diff)
downloadredmine-46e1c6a2fea707a07f93c212f4f36b0f407c802e.tar.gz
redmine-46e1c6a2fea707a07f93c212f4f36b0f407c802e.zip
Display calendar for dates independent of subtasks (#21219).
Patch by Codrut Constantin Gusoi. git-svn-id: http://svn.redmine.org/redmine/trunk@14973 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app')
-rw-r--r--app/views/issues/_attributes.html.erb4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/views/issues/_attributes.html.erb b/app/views/issues/_attributes.html.erb
index 4ec2f8159..07b863cbe 100644
--- a/app/views/issues/_attributes.html.erb
+++ b/app/views/issues/_attributes.html.erb
@@ -49,14 +49,14 @@
<% if @issue.safe_attribute? 'start_date' %>
<p id="start_date_area">
<%= f.text_field(:start_date, :size => 10, :required => @issue.required_attribute?('start_date')) %>
- <%= calendar_for('issue_start_date') if @issue.leaf? %>
+ <%= calendar_for('issue_start_date') %>
</p>
<% end %>
<% if @issue.safe_attribute? 'due_date' %>
<p id="due_date_area">
<%= f.text_field(:due_date, :size => 10, :required => @issue.required_attribute?('due_date')) %>
- <%= calendar_for('issue_due_date') if @issue.leaf? %>
+ <%= calendar_for('issue_due_date') %>
</p>
<% end %>