Skip to content

Commit

Permalink
Fix grade item header text showing 'Assignment title' string instead …
Browse files Browse the repository at this point in the history
…of the actual assignment name
  • Loading branch information
payten committed Jun 24, 2015
1 parent 1c4e51a commit edc3541
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<div class="gb-title">
<span wicket:id="externalAppFlag"></span>
<a wicket:id="title">Assignment title</a>
<a wicket:id="title"><wicket:container wicket:id="label" /></a>
</div>

<div class="gb-grade-section">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,7 @@ public void onClick() {

};
title.add(new AttributeModifier("title", assignment.getName()));
title.add(new Label("label", assignment.getName()));

//set the class based on the sortOrder. May not be set for this assignment
GradebookPage gradebookPage = (GradebookPage) this.getPage();
Expand Down

0 comments on commit edc3541

Please sign in to comment.