Skip to content

Commit

Permalink
Fixed Issue TEAMMATES#12664: Accessiblity Issue for Comment Buttons
Browse files Browse the repository at this point in the history
  • Loading branch information
willzoo committed Feb 11, 2024
1 parent 4593698 commit 18c051b
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -47,11 +47,10 @@
placeholderText="Enter your comment here" [isDisabled]="isDisabled"></tm-rich-text-editor>
</div>

<div class = "float-end">
<div class="float-end">
<button type="button" class="btn btn-light btn-sm"
(click)="triggerCloseCommentBoxEvent()" *ngIf="!shouldHideClosingButton" [disabled]="isDisabled"><i class="fas fa-times"></i>
Cancel</button>

<button type="button" class="btn btn-success btn-sm btn-margin-left"
(click)="triggerSaveCommentEvent()" *ngIf="!shouldHideSavingButton" [disabled]="isDisabled"><i class="fas fa-save"></i>
{{ mode === CommentRowMode.EDIT ? 'Save' : 'Add' }}</button>
Expand Down

0 comments on commit 18c051b

Please sign in to comment.