Fix read-only title box on non-file attachment

Regression in e625c0009e

https://forums.zotero.org/discussion/125214/attachment-title-of-web-links-cannot-be-modified
This commit is contained in:
Abe Jellinek 2025-07-07 13:24:46 -04:00
parent 7beed24756
commit d9a45726d4

View file

@ -433,8 +433,8 @@
else {
fileNameRow.hidden = true;
}
this._id("title").toggleAttribute("readonly", (!this.editable || !fileExists));
this._id("fileName").toggleAttribute("readonly", (!this.editable || !fileExists));
this._id("title").toggleAttribute("readonly", !this.editable);
this._id("fileName").toggleAttribute("readonly", !this.editable || !fileExists);
// Page count
if (this.displayPages && this._item.isPDFAttachment()) {