Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions filter.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ function createCheckBoxFromCounter(counter, title, attrId) {
dropdown_element.setAttribute("data-actions-box", "true");
dropdown_element.setAttribute("data-live-search", "true");
dropdown_element.setAttribute("data-selected-text-format", "count > 2");
dropdown_element.setAttribute("data-none-selected-text", "No " + title + " selected");
dropdown_element.setAttribute("id", "dropdown" + attrId);
dropdown_element.setAttribute("virtualScroll", 10);

Expand Down
2 changes: 1 addition & 1 deletion list_item.js
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ function createListGroupItemForIssue(issue) {

var assignee_text_span = document.createElement("span");
var assignee_text = num_assignees + " assignee";
if (num_assignees > 1) {
if (num_assignees > 1 || num_assignees === 0) {
assignee_text += "s";
}

Expand Down