Skip to content

Commit

Permalink
fix(grid): add type button
Browse files Browse the repository at this point in the history
  • Loading branch information
katherinedragieva committed Feb 24, 2022
1 parent f3c0866 commit d8bd14b
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 d8bd14b

Please sign in to comment.