Skip to content

Commit

Permalink
fix(SearchBar): Allow search after parameter change #928
Browse files Browse the repository at this point in the history
  • Loading branch information
alecarn committed May 24, 2023
1 parent 9c1c4e9 commit 175d9e3
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 7 deletions.
3 changes: 2 additions & 1 deletion angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -272,6 +272,7 @@
"cache": {
"enabled": false,
"environment": "all"
}
},
"analytics": false
}
}
13 changes: 7 additions & 6 deletions src/app/pages/portal/portal.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,18 +13,19 @@

<igo-search-bar *ngIf="showSearchBar"
#searchBar
[term]="searchBarTerm"
[termSplitter]="termSplitter"
[bustCacheOnSettingChange]="true"
[forceNA]="forceCoordsNA"
[minLength]="minSearchTermLength"
[pointerSummaryEnabled]="igoSearchPointerSummaryEnabled"
[reverseSearchCoordsFormatEnabled]="igoReverseSearchCoordsFormatEnabled"
[searchResultsGeometryEnabled]="searchResultsGeometryEnabled"
[searchSettings]="true"
[forceNA]="forceCoordsNA"
[store]="searchStore"
[term]="searchBarTerm"
[termSplitter]="termSplitter"
(searchTermChange)="onSearchTermChange($event)"
[pointerSummaryEnabled]="igoSearchPointerSummaryEnabled"
(pointerSummaryStatus)="onPointerSummaryStatusChange($event)"
[searchResultsGeometryEnabled]="searchResultsGeometryEnabled"
(searchResultsGeometryStatus)="onSearchResultsGeometryStatusChange($event)"
[reverseSearchCoordsFormatEnabled]="igoReverseSearchCoordsFormatEnabled"
(reverseSearchCoordsFormatStatus)="onReverseCoordsFormatStatusChange($event)"
(search)="onSearch($event)"
(clearFeature)="onClearSearch()"
Expand Down

0 comments on commit 175d9e3

Please sign in to comment.