File tree Expand file tree Collapse file tree
apis/navigation/domain/actor Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -273,6 +273,7 @@ export class SearchServiceImpl implements SearchService {
273273 threshold : 0.2 ,
274274 findAllMatches : true ,
275275 ignoreLocation : true , // so that 'san francisco' can be searched for without quotes
276+ ignoreDiacritics : true ,
276277 sortFn : sortSearchResults ,
277278 keys : [
278279 { name : 'label' , weight : 3 } ,
@@ -293,6 +294,7 @@ export class SearchServiceImpl implements SearchService {
293294 threshold : 0.2 ,
294295 findAllMatches : true ,
295296 ignoreLocation : true , // so that 'san francisco' can be searched for without quotes
297+ ignoreDiacritics : true ,
296298 sortFn : sortSearchResults ,
297299 keys : [
298300 { name : 'label' , weight : 3 } ,
Original file line number Diff line number Diff line change @@ -143,6 +143,7 @@ export const PoiSearchBar = (props: SearchBarProps) => {
143143 threshold : 0.2 ,
144144 findAllMatches : true ,
145145 ignoreLocation : true , // so that 'san francisco' can be searched for without quotes
146+ ignoreDiacritics : true ,
146147 sortFn : sortSearchResults ,
147148 keys : [
148149 { name : 'properties.label' , weight : 3 } ,
You can’t perform that action at this time.
0 commit comments