Skip to content

Commit 25ace41

Browse files
authored
Merge pull request topcoderinc#406 from topcoderinc/issue-251
fixed issue 251
2 parents 7d317f3 + 870e6b2 commit 25ace41

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/app/components/data-viewer/data-viewer.component.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -89,13 +89,13 @@
8989
<th mat-header-cell *matHeaderCellDef class="action-col">Action</th>
9090
<td mat-cell *matCellDef="let element">
9191

92-
<button mat-icon-button matTooltip="Edit this item"
92+
<button mat-icon-button matTooltip="Edit"
9393
*ngIf="pageData.item.type === 'hash'"
9494
(click)="onEditMapElements([element])">
9595
<i class="material-icons">edit</i>
9696
</button>
9797

98-
<button mat-icon-button matTooltip="Delete Forever" (click)="removeElement(element)">
98+
<button mat-icon-button matTooltip="Delete" (click)="removeElement(element)">
9999
<i class="material-icons delete-icon">delete</i>
100100
</button>
101101
</td>

0 commit comments

Comments
 (0)