We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6a118a0 commit b9d9db8Copy full SHA for b9d9db8
pgcommitfest/commitfest/static/commitfest/js/commitfest.js
@@ -20,7 +20,7 @@ function findLatestThreads() {
20
sel = $('#attachThreadList');
21
sel.find('option').remove();
22
$.each(data, function(m,i) {
23
- sel.append('<option value="' + i.msgid + '">' + i.from + ': ' + i.subj + ' (' + i.date + ')</option>');
+ sel.append($('<option/>').text(i.from + ': ' + i.subj + ' (' + i.date + ')').val(i.msgid));
24
});
25
}).always(function() {
26
$('#attachThreadListWrap').removeClass('loading');
0 commit comments