@itwin/components-react 3.2.0-dev.13 → 3.2.0-dev.14

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -421,7 +421,7 @@ class Table extends React.Component {
421
421
  };
422
422
  this._deactivateCellEditor = () => {
423
423
  if (this.state.cellEditorState.active)
424
- this.setState({ cellEditorState: { active: false } }, () => setImmediate(() => this.setFocusToSelected()));
424
+ this.setState({ cellEditorState: { active: false } }, () => setTimeout(() => this.setFocusToSelected()));
425
425
  };
426
426
  this._onCellCommit = async (args) => {
427
427
  // istanbul ignore else