Skip to content

Commit

Permalink
chore: adress sonarcloud issues
Browse files Browse the repository at this point in the history
  • Loading branch information
fdewas-aneo committed Nov 18, 2024
1 parent 76e7ee9 commit dc44864
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/components/table/table-inspect-message.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
<section>
<span>{{ croppedMessage | emptyCell }}</span>
@if (croppedMessage) {
<mat-icon [fontIcon]="getIcon('copy')" (click)="copy()" />
<mat-icon [fontIcon]="getIcon('copy')" (click)="copy()" (keydown.enter)="$event.stopPropagation();copy()" />
}
@if (displayEye) {
<mat-icon [fontIcon]="getIcon('view')" (click)="onView()" />
<mat-icon [fontIcon]="getIcon('view')" (click)="onView()" (keydown.enter)="$event.stopPropagation();onView()" />
}
</section>
</mat-chip>

0 comments on commit dc44864

Please sign in to comment.