Skip to content

Commit

Permalink
fix sonar issues
Browse files Browse the repository at this point in the history
  • Loading branch information
furknyavuz committed Aug 27, 2021
1 parent a26a6ca commit 9514242
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<ng-content (click)="toggleDropdown()"></ng-content>
</div>
<div *ngIf="isDropdownOpen" #dropdownContent class="dropdown-content">
<i class="material-icons">change_history</i>
<i aria-hidden="true" class="material-icons">change_history</i>
<a *ngFor="let option of options; last as isLast" class="dropdown-item"
(mouseover)="option.hover = true" (mouseleave)="option.hover = false"
[ngStyle]="option?.hover && { 'background-color': option.backgroundColor }"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ <h2>Open Template Hub</h2>
<a>
<app-dropdown-menu [options]="productMenuOptions">
<span>Products</span>
<i class="material-icons">expand_more</i>
<i aria-hidden="true" class="material-icons">expand_more</i>
</app-dropdown-menu>
</a>
<a>
<app-dropdown-menu [options]="servicesMenuOptions">
<span>Services</span>
<i class="material-icons">expand_more</i>
<i aria-hidden="true" class="material-icons">expand_more</i>
</app-dropdown-menu>
</a>
<a routerLink="{{URLS.maintenance}}">
Expand Down

0 comments on commit 9514242

Please sign in to comment.