@trudb/tru-common-lib 0.2.295 → 0.2.297

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.
@@ -8149,8 +8149,8 @@ class TruDataGrid {
8149
8149
  if (rowData.event.ctrlKey) {
8150
8150
  if (this.rowSelectedOnMousedown) {
8151
8151
  rowData.node.setSelected(false);
8152
- if (!target.classList.contains('ag-cell-focus'))
8153
- target.classList.remove('ag-cell-focus');
8152
+ if (target.classList.contains('ag-cell-focus'))
8153
+ setTimeout(() => { target.classList.remove('ag-cell-focus'); });
8154
8154
  }
8155
8155
  else {
8156
8156
  rowData.node.setSelected(true);