vue-datocms 8.1.3 → 8.1.4
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/dist/index.cjs.js +1 -1
- package/dist/index.esm.mjs +1 -1
- package/package.json +1 -1
package/dist/index.cjs.js
CHANGED
|
@@ -1500,7 +1500,7 @@ function useSiteSearch(config) {
|
|
|
1500
1500
|
}
|
|
1501
1501
|
};
|
|
1502
1502
|
if (config.fuzzySearch) {
|
|
1503
|
-
request.fuzzy = "true";
|
|
1503
|
+
request.filter.fuzzy = "true";
|
|
1504
1504
|
}
|
|
1505
1505
|
const results = yield config.client.searchResults.rawList(request);
|
|
1506
1506
|
if (!isCancelled) {
|
package/dist/index.esm.mjs
CHANGED
|
@@ -1476,7 +1476,7 @@ function useSiteSearch(config) {
|
|
|
1476
1476
|
}
|
|
1477
1477
|
};
|
|
1478
1478
|
if (config.fuzzySearch) {
|
|
1479
|
-
request.fuzzy = "true";
|
|
1479
|
+
request.filter.fuzzy = "true";
|
|
1480
1480
|
}
|
|
1481
1481
|
const results = yield config.client.searchResults.rawList(request);
|
|
1482
1482
|
if (!isCancelled) {
|