Skip to content

Commit d77970d

Browse files
committed
Fix js bug. Fixes ietf-tools#578
- Legacy-Id: 2789
1 parent dc85412 commit d77970d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

static/js/liaisons.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@
188188
}
189189

190190
var userSelect = function(user_list) {
191-
if (!user_list) {
191+
if (!user_list || !user_list.length) {
192192
return;
193193
}
194194
var link = form.find('a.from_mailto');

0 commit comments

Comments
 (0)