@eqproject/eqp-dynamic-module 2.10.46 → 2.10.48

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.
@@ -5886,7 +5886,9 @@ class DbgetterComponent {
5886
5886
  var valueToBeSet = "";
5887
5887
  if (!this.field.IsMultiChoiche) {
5888
5888
  if (this.selectedElements.length > 0) {
5889
- document.querySelector(".table.table-multiselect-forced > td").classList.remove("row-selected");
5889
+ document.querySelectorAll(".table.table-multiselect-forced > tr").forEach((row) => {
5890
+ row.classList.remove("row-selected");
5891
+ });
5890
5892
  this.selectedElements = new Array();
5891
5893
  }
5892
5894
  }