diff --git a/chrome/content/zotero/bindings/itembox.xml b/chrome/content/zotero/bindings/itembox.xml
index c9ecba1a2..11dd51c12 100644
--- a/chrome/content/zotero/bindings/itembox.xml
+++ b/chrome/content/zotero/bindings/itembox.xml
@@ -53,7 +53,7 @@
[]
- 10
+ 5
@@ -561,8 +561,8 @@
if (num > 0) {
// Limit number of creators display
var max = Math.min(num, this._initialVisibleCreators);
- // If fewer than five more, just display
- if (num < max + 5 || this._displayAllCreators) {
+ // If only 1 or 2 more, just display
+ if (num < max + 3 || this._displayAllCreators) {
max = num;
}
for (var i = 0; i < max; i++) {