Fix inline collection editing when clicking to another collection

https://forums.zotero.org/discussion/37739
This commit is contained in:
Dan Stillman 2014-06-21 13:37:16 -04:00
parent 41e50ef669
commit f45b219792

View File

@ -588,8 +588,9 @@ Zotero.CollectionTreeView.prototype.setCellText = function (row, col, val) {
if (val === "") {
return;
}
this.itemGroup.ref.name = val;
this.itemGroup.ref.save();
var itemGroup = this._getItemAtRow(row);
itemGroup.ref.name = val;
itemGroup.ref.save();
}