Item pane header: Show default context menu for attachment titles

Closes #4415
This commit is contained in:
Abe Jellinek 2024-07-22 12:45:06 -04:00
parent c2575d2a14
commit 0944f3bdc6

View file

@ -117,7 +117,9 @@
this.titleField.addEventListener('blur', () => this.save());
this.titleField.ariaLabel = Zotero.getString('itemFields.title');
this.titleField.addEventListener('contextmenu', (event) => {
if (!this._item) return;
if (!this._item
// Attachment title field: Use default editable-text context menu
|| this._item.isAttachment()) return;
event.preventDefault();
let menupopup = ZoteroPane.buildFieldTransformMenu({