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
This commit is contained in:
Dan Stillman 2024-05-17 05:26:40 -04:00
parent 126d12905b
commit cd0ec45dc8

View file

@ -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;
}