# HG changeset patch # User olivier # Date 1404904069 -7200 # Wed Jul 09 13:07:49 2014 +0200 # Node ID 8843e5c5c5c86025d9a136565ae009877851acd9 # Parent 53691812ed64b82e3472bdc0c4b6bccad1695bd7 Add version date info as a tooltip over the version name diff -r 53691812ed64 -r 8843e5c5c5c8 app/views/issues/show.html.erb --- a/app/views/issues/show.html.erb Tue Jul 08 16:28:18 2014 +0200 +++ b/app/views/issues/show.html.erb Wed Jul 09 13:07:49 2014 +0200 @@ -43,7 +43,7 @@ rows.left l(:field_category), h(@issue.category ? @issue.category.name : "-"), :class => 'category' end unless @issue.disabled_core_fields.include?('fixed_version_id') - rows.left l(:field_fixed_version), (@issue.fixed_version ? link_to_version(@issue.fixed_version) : "-"), :class => 'fixed-version' + rows.left l(:field_fixed_version), (@issue.fixed_version ? link_to_version(@issue.fixed_version,:title => @issue.fixed_version.effective_date) : "-"), :class => 'fixed-version' end unless @issue.disabled_core_fields.include?('start_date')