Skip to content

Commit

Permalink
fixed action icon button tooltip (#173)
Browse files Browse the repository at this point in the history
Co-authored-by: Mathis Marcotte <mathis.marcotte@statcan.gc.ca>
  • Loading branch information
mathis-marcotte and Mathis Marcotte authored Oct 25, 2022
1 parent f839911 commit c727dff
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<button
*ngIf="isPhaseReady()"
mat-icon-button
matTooltip="{{ action.tooltip }}"
matTooltip="{{ tooltipReady }}"
matTooltipClass="custom-tooltip"
[color]="action.color"
(click)="emitClickedEvent()"
Expand All @@ -14,7 +14,7 @@
<button
*ngIf="isPhaseInit()"
mat-icon-button
matTooltip="{{ action.tooltip }}"
matTooltip="{{ tooltipInit }}"
matTooltipClass="custom-tooltip"
[color]="action.color"
(click)="emitClickedEvent()"
Expand Down

0 comments on commit c727dff

Please sign in to comment.