We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bd3c4de commit 870e6b2Copy full SHA for 870e6b2
src/app/components/data-viewer/data-viewer.component.html
@@ -89,13 +89,13 @@
89
<th mat-header-cell *matHeaderCellDef class="action-col">Action</th>
90
<td mat-cell *matCellDef="let element">
91
92
- <button mat-icon-button matTooltip="Edit this item"
+ <button mat-icon-button matTooltip="Edit"
93
*ngIf="pageData.item.type === 'hash'"
94
(click)="onEditMapElements([element])">
95
<i class="material-icons">edit</i>
96
</button>
97
98
- <button mat-icon-button matTooltip="Delete Forever" (click)="removeElement(element)">
+ <button mat-icon-button matTooltip="Delete" (click)="removeElement(element)">
99
<i class="material-icons delete-icon">delete</i>
100
101
</td>
0 commit comments