diff --git a/chrome/content/zotero/xpcom/collectionTreeView.js b/chrome/content/zotero/xpcom/collectionTreeView.js index 494813428..0391a894f 100644 --- a/chrome/content/zotero/xpcom/collectionTreeView.js +++ b/chrome/content/zotero/xpcom/collectionTreeView.js @@ -2209,7 +2209,8 @@ Zotero.CollectionTreeRow.prototype.isShare = function() // Special Zotero.CollectionTreeRow.prototype.isWithinGroup = function () { - return this.ref && Zotero.Libraries.getType(this.ref.libraryID) == 'group'; + return this.ref && !this.isHeader() + && Zotero.Libraries.getType(this.ref.libraryID) == 'group'; } Zotero.CollectionTreeRow.prototype.isWithinEditableGroup = function () {