Skip to content

Commit

Permalink
Route the top left menu directly to explorer and not ticker
Browse files Browse the repository at this point in the history
  • Loading branch information
sondreb committed Feb 6, 2022
1 parent f7c7502 commit c4d797f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
<div *ngIf="setup.multiChain" class="dropdown-content chains">
<ul>
<li class="chain-item" *ngFor="let c of setup.chains">
<a class="chain-link" [routerLink]="[c.symbol.toLowerCase()]"><img [ngClass]="{'mode-aware': c.filter}" [src]="c.icon"></a>
<a class="chain-link" [routerLink]="[c.symbol.toLowerCase()]">{{c.name}}</a>
<a class="chain-link" [routerLink]="[c.symbol.toLowerCase(), 'explorer']"><img [ngClass]="{'mode-aware': c.filter}" [src]="c.icon"></a>
<a class="chain-link" [routerLink]="[c.symbol.toLowerCase(), 'explorer']">{{c.name}}</a>
</li>
</ul>
</div>
Expand Down

0 comments on commit c4d797f

Please sign in to comment.