Skip to content

Commit

Permalink
Fixes #89
Browse files Browse the repository at this point in the history
  • Loading branch information
YannickRe committed Dec 16, 2024
1 parent f91a8a6 commit e406d4f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Additionally, this web part has also been demoed on the [PnP Community call of S

## Used SharePoint Framework Version

![drop](https://img.shields.io/badge/version-1.12.1-green.svg)
![drop](https://img.shields.io/badge/version-1.18.2-green.svg)

## Applies to

Expand Down
2 changes: 1 addition & 1 deletion src/services/SearchService/SearchService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ export class SearchService implements ISearchService {

if (!isEmpty(this.searchParameter)) {
const filterQueries = [];
let searchParameter = this.searchParameter.replace('&', '').replace('&', '');
let searchParameter = encodeURIComponent(this.searchParameter.replace('&', '').replace('&', '').replace('%23', '').replace('#', ''));
if (this.enableUmlautReplacement) {
searchParameter = this.replaceUmlauts(searchParameter);
}
Expand Down

0 comments on commit e406d4f

Please sign in to comment.