Skip to content

Commit

Permalink
Merge pull request #11098 from IgniteUI/kdragieva/grid-batchEditing-o…
Browse files Browse the repository at this point in the history
…n-13.0.x

fix(grid): Add type to Cancel/Done buttons on 13.0.x version
  • Loading branch information
hanastasov authored Feb 28, 2022
2 parents f3c0866 + d8bd14b commit 080f49f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -243,8 +243,8 @@
</ng-template>

<ng-template #defaultRowEditActions>
<button igxButton igxRowEditTabStop (click)="this.endRowEditTabStop(false, $event)">{{ this.resourceStrings.igx_grid_row_edit_btn_cancel }}</button>
<button igxButton igxRowEditTabStop (click)="this.endRowEditTabStop(true, $event)">{{ this.resourceStrings.igx_grid_row_edit_btn_done }}</button>
<button igxButton igxRowEditTabStop type="button" (click)="this.endRowEditTabStop(false, $event)">{{ this.resourceStrings.igx_grid_row_edit_btn_cancel }}</button>
<button igxButton igxRowEditTabStop type="button" (click)="this.endRowEditTabStop(true, $event)">{{ this.resourceStrings.igx_grid_row_edit_btn_done }}</button>
</ng-template>

<ng-template #defaultRowEditTemplate>
Expand Down

0 comments on commit 080f49f

Please sign in to comment.