www

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | Submodules | README | LICENSE

commit edb08e179c817993d33344bfd62aeac1ca6917a7
parent a01f2765e4cc5387c1380011059c17e84e1c8d91
Author: Dan Stillman <dstillman@zotero.org>
Date:   Mon, 23 Jan 2017 08:46:42 -0500

Fix item key search (broken by a01f2765e4)

Diffstat:
Mchrome/content/zotero/xpcom/data/searchConditions.js | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/chrome/content/zotero/xpcom/data/searchConditions.js b/chrome/content/zotero/xpcom/data/searchConditions.js @@ -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; } },