@trudb/tru-common-lib 0.1.880 → 0.1.881

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.
@@ -7090,7 +7090,9 @@ class TruDataGrid {
7090
7090
  };
7091
7091
  onCellMouseOver(e) {
7092
7092
  let targetElement = e.event.target;
7093
- if (e.data.$entity.entityAspect.hasValidationErrors && targetElement) {
7093
+ if (targetElement &&
7094
+ !targetElement.classList.contains('.ag-cell-popup-editing') &&
7095
+ e.data.$entity.entityAspect.hasValidationErrors) {
7094
7096
  if (!targetElement.classList.contains('ag-cell'))
7095
7097
  targetElement = targetElement.closest('.ag-cell');
7096
7098
  if (targetElement && targetElement.classList.contains('invalid')) {