Merge pull request #648 from opf/fix/work_package_special_reports

Fix/work package special reports
pull/627/head
sschu 11 years ago
commit 024fa615c6
  1. 7
      app/views/work_packages/reports/report_details.html.erb
  2. 3
      doc/CHANGELOG.md
  3. 5
      features/work_packages/reports.feature

@ -30,10 +30,13 @@ See doc/COPYRIGHT.rdoc for more details.
<h2><%=l(:label_summary)%></h2>
<h3><%=@report_title%></h3>
<%= render :partial => 'report', :locals => { :statuses => @statuses,
:rows => @rows,
:data => @data,
:field_name => @field } %>
:field_name => @field,
:report => @report } %>
<br />
<%= link_to l(:button_back), report_project_issues_path(@project) %>
<%= link_to l(:button_back), report_project_work_packages_path(@project) %>

@ -29,12 +29,13 @@ See doc/COPYRIGHT.rdoc for more details.
# Changelog
* `#1368` Fix: Readding project members in user admin view
* `#2653` Remove relative vertical offset corrections and custom border fixes for IE8.
* `#2654` Remove custom font rendering/kerning as well as VML from timelines.
* `#2655` Find a sensible default for Timelines rendering bucket size.
* `#2668` First Grouping Criteria broken when also selecting Hide other group
* `#2699` [Wiki] 400 error when entering special character in wiki title
* `#1368` Fix: Readding project members in user admin view
* `#2756` [Work package] 500 when clicking on analyze button in work package summary
* Fix mysql data migrations
## 3.0.0pre30

@ -48,3 +48,8 @@ Feature: Navigating from reports to index
When I go to the work_packages/report page of the project called "parent"
And I follow "Work packages" within "#main-menu"
Then I should be on the work packages index page of the project called "parent"
Scenario: Navigating from work package reports page to a type report
When I go to the work_packages/report page of the project called "parent"
And I follow "Further analyze: Type"
Then I should see "Bug" within ".list"

Loading…
Cancel
Save