Skip to content

Commit 500cd98

Browse files
authored
Merge pull request #9 from topcoder-platform/issues-357
Issues-357: removed last/first names from a dropdown
2 parents 57fd915 + c1a87b0 commit 500cd98

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

js/topcodereditor.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,7 @@
4444
success: function (data) {
4545
var result = [];
4646
$.each(data, function (i, item) {
47-
result.push({text: data[i].handle, displayText: data[i].handle+ "("+ data[i].firstName + ' ' + data[i].lastName +")",
48-
className: 'Username'});
47+
result.push({text: data[i].handle, displayText: data[i].handle, className: 'Username'});
4948
});
5049
return accept({
5150
list: result,

0 commit comments

Comments
 (0)