From cd0ec45dc89ea9a2603f12d93d9844ce070afdca Mon Sep 17 00:00:00 2001 From: Dan Stillman Date: Fri, 17 May 2024 05:26:40 -0400 Subject: [PATCH] Make all `publicationTitle` fields multi-line, not just `bookTitle` For some reason applied only to Book Title in #890 https://forums.zotero.org/discussion/comment/463195/#Comment_463195 --- chrome/content/zotero/xpcom/data/itemFields.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/chrome/content/zotero/xpcom/data/itemFields.js b/chrome/content/zotero/xpcom/data/itemFields.js index 60380b36cd..730c232b2f 100644 --- a/chrome/content/zotero/xpcom/data/itemFields.js +++ b/chrome/content/zotero/xpcom/data/itemFields.js @@ -393,7 +393,8 @@ Zotero.ItemFields = new function() { var fields = [ 'title', ...this.getTypeFieldsFromBase('title', true), - 'bookTitle' + 'publicationTitle', + ...this.getTypeFieldsFromBase('publicationTitle', true), ]; return fields.indexOf(field) != -1; }