Skip to content
This repository has been archived by the owner on Dec 18, 2021. It is now read-only.

Commit

Permalink
#2 - Adding tooltips to icons on the rules dashboard.
Browse files Browse the repository at this point in the history
  • Loading branch information
joaopgrassi committed Dec 26, 2017
1 parent 7ea9704 commit b314618
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/app/rule/dashboard/rule-dashboard.component.html
Expand Up @@ -33,13 +33,13 @@ <h1>Rules Dashboard</h1>
<ng-container matColumnDef="actions">
<mat-header-cell *matHeaderCellDef> Actions</mat-header-cell>
<mat-cell *matCellDef="let element">
<button mat-icon-button (click)="edit(element)">
<button mat-icon-button matTooltip="Edit Rule" (click)="edit(element)">
<mat-icon class="md-24" aria-label="edit">mode_edit</mat-icon>
</button>
<button mat-icon-button (click)="duplicate(element)">
<button mat-icon-button matTooltip="Duplicate Rule" (click)="duplicate(element)">
<mat-icon class="md-24" aria-label="duplicate">content_copy</mat-icon>
</button>
<button mat-icon-button (click)="remove(element)">
<button mat-icon-button matTooltip="Remove Rule" (click)="remove(element)">
<mat-icon class="md-24" aria-label="delete">delete</mat-icon>
</button>
</mat-cell>
Expand Down

0 comments on commit b314618

Please sign in to comment.