Skip to content

Commit 03d3a54

Browse files
authored
Correctly display PDF annotations on viewFeedback page (#1901)
Special handling for pdf annotations
1 parent b905d62 commit 03d3a54

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

app/views/assessments/_remarks_panel.html.erb

+5-2
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,13 @@
3333
<span>
3434
<b><%= annotation.value? ? sprintf("(%+.2f)", annotation.value.round(2)) : "" %></b>
3535
<% if annotation.global_comment? %>
36-
<%= link_to "Global Annotation", [:view, @course, @assessment, @submission] %>
36+
<%= link_to "Global Annotation", view_course_assessment_submission_path(@course, @assessment, @submission) %>
37+
<% elsif annotation.coordinate.present? %>
38+
<%# note: does not have a line number %>
39+
<%= link_to filename.to_s, view_course_assessment_submission_path(@course, @assessment, @submission, header_position: annotation.position) %>
3740
<% else %>
3841
<%# line + 1 because line numbers start from 1 %>
39-
<%= link_to filename.to_s + ":" + (annotation.line + 1).to_s, [:view, @course, @assessment, @submission, header_position: annotation.position] %>
42+
<%= link_to filename.to_s + ":" + (annotation.line + 1).to_s, view_course_assessment_submission_path(@course, @assessment, @submission, header_position: annotation.position) %>
4043
<% end %>
4144
</span>
4245
</li>

0 commit comments

Comments
 (0)