disable "Find available PDF" if files not editable (#3430)

For example, in a public group files are not editable,
so this menu item is disabled.

Fixes: #3428
This commit is contained in:
abaevbog 2023-09-22 09:13:36 -04:00 committed by GitHub
parent f28873382d
commit 399baf0d73
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -3716,6 +3716,9 @@ var ZoteroPane = new function()
if (Zotero.Attachments.canFindPDFForItem(item)) {
show.add(m.findPDF);
show.add(m.sep3);
if (!collectionTreeRow.filesEditable) {
disable.add(m.findPDF);
}
}
if (Zotero.RecognizeDocument.canUnrecognize(item)) {