Skip to content

Commit

Permalink
DataGrid(T1158801): Code review fixes.
Browse files Browse the repository at this point in the history
  • Loading branch information
Ilya Vinogradov committed Apr 14, 2023
1 parent 90dd58f commit 8d0db5e
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions js/__internal/grids/grid_core/keyboard_navigation/module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1899,11 +1899,7 @@ export class KeyboardNavigationController extends modules.ViewController {
const isEditResultDeferred = isDeferred(editResult);
const isFastEditingStarted = this._isFastEditingStarted();

if (!isFastEditingStarted) {
return;
}

if (!isEditResultDeferred && !editResult) {
if (!isFastEditingStarted || (!isEditResultDeferred && !editResult)) {
return;
}

Expand Down

0 comments on commit 8d0db5e

Please sign in to comment.