Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

title typo [#126240357] #579

Merged
merged 1 commit into from
Jul 26, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions app/views/dashboard/protocols/show.xlsx.axlsx
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ arm_r_totals = {}
sheet.add_row protocol_header_row, :style => header_style
sheet.add_row ["SPARC #{@protocol.class.to_s} ID:",@protocol.id], :style => default
sheet.add_row ["Short Title:",@protocol.short_title], :style => default
sheet.add_row ["Protocol Title:", @protocol.short_title], :style => default
sheet.add_row ["Protocol Title:", @protocol.title], :style => default
sheet.add_row ["Sponsor:", @protocol.sponsor_name], :style => default
sheet.add_row ["Primary PI Name:", @protocol.primary_principal_investigator.full_name], :style => default

Expand Down Expand Up @@ -193,7 +193,7 @@ wb.insert_worksheet(0, name: "Summary") do |sheet|

sheet.add_row ["SPARC #{@protocol.class.to_s} ID:", "", @protocol.id], :style => default
sheet.add_row ["Short Title:", "", @protocol.short_title], :style => default
sheet.add_row ["Protocol Title:", "", @protocol.short_title], :style => default
sheet.add_row ["Protocol Title:", "", @protocol.title], :style => default
sheet.add_row ["Sponsor:", "", @protocol.sponsor_name], :style => default
sheet.add_row ["Primary PI Name:", "", @protocol.primary_principal_investigator.full_name], :style => default
sheet.add_row ["Business Manager:", "", @protocol.billing_managers.map(&:full_name).try(:join, ', ')], :style => default
Expand Down