Skip to content

Commit

Permalink
fix(IgxGridSummaryCell): prevent navigation on summaryCell-ctrl+arrow…
Browse files Browse the repository at this point in the history
…Down #3651
  • Loading branch information
ddincheva committed Jan 22, 2019
1 parent 2948e9a commit 131aee9
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,8 @@ export class IgxSummaryCellComponent {
const shift = event.shiftKey;
const ctrl = event.ctrlKey;

if (ctrl && (key === 'arrowup' || key === 'up' || key === 'down' || key === 'end' || key === 'home')) { return; }
if (ctrl && (key === 'arrowup' || key === 'arrowdown' || key === 'up'
|| key === 'down' || key === 'end' || key === 'home')) { return; }
const row = this.getRowElementByIndex(this.rowIndex);
switch (key) {
case 'tab':
Expand Down

0 comments on commit 131aee9

Please sign in to comment.