Skip to content

Commit

Permalink
fix #944 - desktop layout for mobile
Browse files Browse the repository at this point in the history
  • Loading branch information
amirbashan committed Jan 26, 2025
1 parent 5067794 commit bccd556
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions projects/srm/src/app/page/page.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -66,21 +66,21 @@
</app-results-drawer>
</div>
}
@if (layout.desktop() && searchParams) {
<app-search-results-page
[class.visible]='stage === "search-results"'
[searchParams]='searchParams'
[serachResultsActive]="stage === 'search-results'"
[didYouMean]='didYouMean'
[searchState]='searchState'
[filtersState]='filtersState'
[areaSearchState]='areaSearchState'
(zoomout)='zoomOutMap($event)'
(visibleCount)='visibleCount = $event'
(nationalCount)='nationalCount = $event'
(hoverCard)='hoverCard($event)'
></app-search-results-page>
}
<app-search-results-page
*ngIf='layout.desktop() && searchParams'
[class.visible]='stage === "search-results"'
[searchParams]='searchParams'
[serachResultsActive]="stage === 'search-results'"
[didYouMean]='didYouMean'
[searchState]='searchState'
[filtersState]='filtersState'
[areaSearchState]='areaSearchState'
(zoomout)='zoomOutMap($event)'
(visibleCount)='visibleCount = $event'
(nationalCount)='nationalCount = $event'
(hoverCard)='hoverCard($event)'
/>

@if (stage === 'point') {
<app-branch-container
[cardId]='card'
Expand Down

0 comments on commit bccd556

Please sign in to comment.