Fix item key search (broken by a01f2765e4
)
This commit is contained in:
parent
a01f2765e4
commit
edb08e179c
1 changed files with 1 additions and 1 deletions
|
@ -452,7 +452,7 @@ Zotero.SearchConditions = new function(){
|
|||
special: true,
|
||||
noLoad: true,
|
||||
inlineFilter: function (val) {
|
||||
return Zotero.Utilities.isValidObjectKey(val) ? val : false;
|
||||
return Zotero.Utilities.isValidObjectKey(val) ? `'${val}'` : false;
|
||||
}
|
||||
},
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue