Fix inline collection editing when clicking to another collection
https://forums.zotero.org/discussion/37739
This commit is contained in:
parent
41e50ef669
commit
f45b219792
|
@ -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();
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user