in edit mode maintain the name of the subject in the award receipt label

This commit is contained in:
tworrall 2012-06-27 21:10:36 +00:00
parent 5387992e45
commit fcc26a3207

View file

@ -98,6 +98,9 @@ var awardReceiptUtils = {
if ( this.yearAwarded.val().length ) {
rdfsLabel += " (" + this.subjectName + ' - ' + this.yearAwarded.val() + ")";
}
else {
rdfsLabel += " (" + this.subjectName + ")";
}
this.recLabel.val(rdfsLabel);
},