@easyops-cn/docusaurus-search-local 0.44.2 → 0.44.3

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/CHANGELOG.md CHANGED
@@ -2,6 +2,13 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
4
 
5
+ ## [0.44.3](https://github.com/easyops-cn/docusaurus-search-local/compare/v0.44.2...v0.44.3) (2024-07-08)
6
+
7
+
8
+ ### Bug Fixes
9
+
10
+ * append a `/` to the search link. ([#432](https://github.com/easyops-cn/docusaurus-search-local/issues/432)) ([60c23d4](https://github.com/easyops-cn/docusaurus-search-local/commit/60c23d43c5c9b3ecc6ceb7319762a9c4acb9e32e))
11
+
5
12
  ## [0.44.2](https://github.com/easyops-cn/docusaurus-search-local/compare/v0.44.1...v0.44.2) (2024-06-20)
6
13
 
7
14
 
@@ -155,7 +155,7 @@ export default function SearchBar({ handleSearchBarToggle, }) {
155
155
  }
156
156
  params.set("version", versionUrl.substring(baseUrl.length));
157
157
  }
158
- const url = `${baseUrl}search?${params.toString()}`;
158
+ const url = `${baseUrl}search/?${params.toString()}`;
159
159
  a.href = url;
160
160
  a.textContent = linkText;
161
161
  a.addEventListener("click", (e) => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@easyops-cn/docusaurus-search-local",
3
- "version": "0.44.2",
3
+ "version": "0.44.3",
4
4
  "description": "An offline/local search plugin for Docusaurus v3",
5
5
  "repository": {
6
6
  "type": "git",