Skip to content

Commit

Permalink
Update view_team.html.erb
Browse files Browse the repository at this point in the history
Variable name corrected
  • Loading branch information
ameyagv committed Oct 26, 2023
1 parent dcaa204 commit cda115f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/views/grades/view_team.html.erb
Expand Up @@ -171,7 +171,7 @@
<!-- actual cells with scores and colored background. -->
<% row.score_row.each do |score| %>
<% score_comment = score.comment.nil? ? '' : score.comment %>
<td class="<%= score.color_code %>" align="center" data-toggle="tooltip" title="<%= strip_tags(score.comment).html_safe%>">
<td class="<%= score.color_code %>" align="center" data-toggle="tooltip" title="<%= strip_tags(score_comment).html_safe%>">
<span class="<%= underlined?(score) %>"><%= score.score_value.to_s %></span>
</td>
<% end %>
Expand Down

0 comments on commit cda115f

Please sign in to comment.