Fix error message trying to add related item in another library
https://forums.zotero.org/discussion/114027/zotero-7-beta-remove-other-libraries-from-the-add-related-window
This commit is contained in:
parent
53f685ca76
commit
41726fef84
1 changed files with 1 additions and 1 deletions
|
@ -151,7 +151,7 @@ import { getCSSItemTypeIcon } from 'components/icons';
|
|||
return;
|
||||
}
|
||||
if (relItems[0].libraryID != this._item.libraryID) {
|
||||
Zotero.alert.alert(null, "", "You cannot relate items in different libraries.");
|
||||
Zotero.alert(null, "", "You cannot relate items in different libraries.");
|
||||
return;
|
||||
}
|
||||
await Zotero.DB.executeTransaction(async () => {
|
||||
|
|
Loading…
Reference in a new issue