Skip to content

Commit

Permalink
fixed typo in app-detail
Browse files Browse the repository at this point in the history
  • Loading branch information
HenryT-CG authored Oct 12, 2024
1 parent 27bd5ca commit fd8ec93
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/product-store/app-detail/app-detail.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -468,7 +468,7 @@
[id]="'ps_app_detail_endpoint_table_row_' + i + '_add_action'"
(click)="onAddEndpointRow()"
[disabled]="i !== endpoints.length - 1"
aria-label="'ACTIONS.TABLE.ADD_ROW.LABEL' | translate"
[aria-label]="'ACTIONS.TABLE.ADD_ROW.LABEL' | translate"
[pTooltip]="'ACTIONS.TABLE.ADD_ROW.TOOLTIP' | translate"
tooltipPosition="top"
tooltipEvent="hover"
Expand All @@ -481,7 +481,7 @@
[id]="'ps_app_detail_endpoint_table_row_' + i + '_delete_action'"
(click)="onDeleteEndpointRow(i)"
[disabled]="i === 0 && endpoints.length === 1"
aria-label="'ACTIONS.DELETE.ENDPOINT.TOOLTIP' | translate"
[aria-label]="'ACTIONS.DELETE.ENDPOINT.TOOLTIP' | translate"
[pTooltip]="'ACTIONS.DELETE.ENDPOINT.TOOLTIP' | translate"
tooltipPosition="top"
tooltipEvent="hover"
Expand Down

0 comments on commit fd8ec93

Please sign in to comment.