We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e40ee15 commit af5f093Copy full SHA for af5f093
packages/devextreme/js/__internal/scheduler/workspaces/m_work_space.ts
@@ -511,13 +511,7 @@ class SchedulerWorkSpace extends Widget<WorkspaceOptionsInternal> {
511
512
const isMultiSelectionAllowed = this.option('allowMultipleCellSelection');
513
const currentCellData = this._getFullCellData($cell);
514
- const focusedCell = this.cellsSelectionState.getFocusedCell();
515
-
516
- if (!focusedCell) {
517
- return;
518
- }
519
520
- const focusedCellData = focusedCell.cellData;
+ const focusedCellData = this.cellsSelectionState.getFocusedCell().cellData;
521
522
const nextFocusedCellData = this.cellsSelectionController.moveToCell({
523
isMultiSelection,
0 commit comments