We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a9c6672 commit 3da083eCopy full SHA for 3da083e
src/app/shared/search-form/search-form.component.ts
@@ -116,6 +116,11 @@ export class SearchFormComponent implements OnChanges {
116
updateSearch(data: any) {
117
const goToFirstPage = { 'spc.page': 1 };
118
119
+ // Force search with lower case
120
+ if (data?.query) {
121
+ data.query = data.query.toLowerCase();
122
+ }
123
+
124
const queryParams = Object.assign(
125
{
126
...goToFirstPage
0 commit comments