Skip to content

Commit

Permalink
Merge branch 'master' into bug/stringify
Browse files Browse the repository at this point in the history
  • Loading branch information
feeloor authored Nov 18, 2019
2 parents 7d374a1 + 8b07964 commit e4e75b1
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions src/frontend/components/router-tree/router-tree.html
Original file line number Diff line number Diff line change
@@ -1,32 +1,32 @@
<div class="flex-grow flex flex-column bg-base">
<bt-router-info
[hidden]="selectedRoute === null"
[selectedRoute]="selectedRoute">
</bt-router-info>
<div class="flex-auto flex flex-column bg-base">
<bt-router-info [hidden]="selectedRoute === null" [selectedRoute]="selectedRoute"> </bt-router-info>
<div class="p2 no-routes" [hidden]="routerTree?.length !== 0">
<p class="h1">
There are no routes to display.
</p>
<p class="h3">If you have routes defined and not seeing anything, for version of Angular older than 2.3.0, please see the <a (click)="showReadme()">README.</a></p>
<p class="h3">
If you have routes defined and not seeing anything, for version of Angular older than 2.3.0, please see the
<a (click)="showReadme()">README.</a>
</p>
</div>
<div class="flex flex-column flex-auto overflow-scroll" [hidden]="routerTree?.length === 0">
<div class="flex-auto overflow-scroll" #routeTree>
<svg #svgContainer class="svg-container">
<g #mainGroup>
</g>
<g #mainGroup></g>
</svg>
</div>
<div
#resizer
style="height: 6px; left: 0; right: 0; cursor: ns-resize; z-index: 500;
position: absolute;">
</div>
#resizer
style="height: 6px; left: 0; right: 0; cursor: ns-resize; z-index: 500;
position: absolute;"
></div>
<div class="bg-panel border-top">
<header class="flex py1 px2">
<search
(selectedResult)="onSelectedSearchResultChanged($event)"
[handler]="onRetrieveSearchResults"
[placeholder]="'Search routes'">
[placeholder]="'Search routes'"
>
</search>
</header>
</div>
Expand Down

0 comments on commit e4e75b1

Please sign in to comment.