Skip to content
This repository was archived by the owner on Jan 23, 2025. It is now read-only.

Commit 7736dac

Browse files
authored
Merge pull request #301 from appirio-tech/dev
Update contestDetailSoftware.js For Fixing Task Winner Selection
2 parents 00c2b67 + 3d1b23e commit 7736dac

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/web/scripts/launch/contestDetailSoftware.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -3529,7 +3529,7 @@ function showSelectWinner(modal, title, yesButtonHandler) {
35293529
$(modal + " #registrants").html("");
35303530
$(modal + " #registrants").append($('<option></option>').val(0).html("Please select the winner"));
35313531
$.each(mainWidget.softwareCompetition.registrants, function (k,v) {
3532-
$(modal + " #registrants").append($('<option></option>').val(v.id).html(v.handle));
3532+
$(modal + " #registrants").append($('<option></option>').val(v.id).html(v.name));
35333533
});
35343534

35353535
$(modal + " .modalCommandBox .defaultBtn").bind("click", yesButtonHandler);

0 commit comments

Comments
 (0)