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 === "") {
|
if (val === "") {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
this.itemGroup.ref.name = val;
|
var itemGroup = this._getItemAtRow(row);
|
||||||
this.itemGroup.ref.save();
|
itemGroup.ref.name = val;
|
||||||
|
itemGroup.ref.save();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user