@riboseinc/anafero-cli 0.0.3 → 0.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.rst
CHANGED
package/bootstrap.js
CHANGED
|
@@ -132168,7 +132168,7 @@ var Search2 = function({ index, query, getPlainTitle, locateResource, onEditQuer
|
|
|
132168
132168
|
const queryTokenized = import_lunr.default.tokenizer(debouncedQuery);
|
|
132169
132169
|
try {
|
|
132170
132170
|
return [
|
|
132171
|
-
index?.search(queryTokenized.map((t2) =>
|
|
132171
|
+
index?.search(queryTokenized.map((t2) => `${t2}`).join(" "))?.map((res) => ({ ...res, id: res.ref, name: res.ref })),
|
|
132172
132172
|
null
|
|
132173
132173
|
];
|
|
132174
132174
|
} catch (e2) {
|