From 65bc56b07b756515322eccd37aa3dd36a344a98b Mon Sep 17 00:00:00 2001 From: Bogdan Abaev Date: Tue, 10 Jun 2025 09:50:30 -0700 Subject: [PATCH] dont exclude image annotations when creating notes from multiple selected items. Regression from 48fd23ccec73156855f4c59170b332af2e4357dd --- chrome/content/zotero/zoteroPane.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chrome/content/zotero/zoteroPane.js b/chrome/content/zotero/zoteroPane.js index 8ab3827882..9d050c3baf 100644 --- a/chrome/content/zotero/zoteroPane.js +++ b/chrome/content/zotero/zoteroPane.js @@ -5929,7 +5929,7 @@ var ZoteroPane = new function() Zotero.logError(e); } } - annotations.push(...attachment.getAnnotations().filter(x => x.annotationType != 'ink' && x.annotationType != 'image')); + annotations.push(...attachment.getAnnotations().filter(x => x.annotationType != 'ink')); } }