Signed-off-by: Stefan Parviainen <pafcu@iki.fi>
pull/21833/head
Stefan Parviainen 2017-10-24 20:07:57 +02:00
parent bc034f3083
commit 88fd60066f
1 changed files with 1 additions and 1 deletions

View File

@ -302,7 +302,7 @@ module.exports = React.createClass({
return "";
} else if (items.length === 1) {
return items[0];
} else if (remaining >= 0) {
} else if (remaining > 0) {
items = items.slice(0, itemLimit);
return _t("%(items)s and %(count)s others", { items: items.join(', '), count: remaining } )
} else {