Skip to content

Commit

Permalink
NAS-122993: No tooltip appeared when hovering the mouse on the icons …
Browse files Browse the repository at this point in the history
…(like run now, delete) of the cloud sync task and replication tasks in the Data Protection and Sharing screen (#8532)
  • Loading branch information
AlexKarpov98 authored Aug 8, 2023
1 parent b6afd7b commit 15240e4
Showing 1 changed file with 4 additions and 8 deletions.
12 changes: 4 additions & 8 deletions src/app/modules/entity/table/table.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -211,29 +211,25 @@ <h3 *ngIf="title" class="title">
<ng-template #actionButtons>
<button
mat-icon-button
[matTooltip]="rowAction.matTooltip"
[ixTest]="['row-action', _tableConf.name, rowAction.name]"
[disabled]="rowAction.disabled || rowAction.disabledCondition?.(element)"
(click)="$event.stopPropagation(); rowAction.onClick(element)"
>
<ix-icon
[name]="rowAction.icon"
[matTooltip]="rowAction.matTooltip"
></ix-icon>
<ix-icon [name]="rowAction.icon"></ix-icon>
</button>
</ng-template>
</ng-container>
</ng-container>
<button
*ngIf="_tableConf.deleteCall"
mat-icon-button
[matTooltip]="'Delete' | translate"
[ixTest]="['table', _tableConf.name, 'delete']"
[disabled]="_tableConf.deleteActionDisabled"
(click)="$event.stopPropagation(); deleteRow(element)"
>
<ix-icon
name="delete"
[matTooltip]="'Delete' | translate"
></ix-icon>
<ix-icon name="delete"></ix-icon>
</button>
</div>
</td>
Expand Down

0 comments on commit 15240e4

Please sign in to comment.