@eqproject/eqp-dynamic-module 2.10.44 → 2.10.45
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.
- package/esm2020/lib/components/private/dbgetter/dbgetter.component.mjs +2 -2
- package/fesm2015/eqproject-eqp-dynamic-module.mjs +1 -1
- package/fesm2015/eqproject-eqp-dynamic-module.mjs.map +1 -1
- package/fesm2020/eqproject-eqp-dynamic-module.mjs +1 -1
- package/fesm2020/eqproject-eqp-dynamic-module.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -5887,7 +5887,6 @@ class DbgetterComponent {
|
|
|
5887
5887
|
if (!this.field.IsMultiChoiche) {
|
|
5888
5888
|
if (this.selectedElements.length > 0) {
|
|
5889
5889
|
this.selectedElements.forEach((selectedElement, index) => {
|
|
5890
|
-
this.selectedElements.splice(index, 1);
|
|
5891
5890
|
var correspondingCol = document.getElementById("col-" + selectedElement.KeyUsedSV + "-id-" + row['ID']);
|
|
5892
5891
|
if (correspondingCol == null) {
|
|
5893
5892
|
correspondingCol = document.getElementById("col-" + selectedElement.KeySV + "-id-" + row['ID']);
|
|
@@ -5898,6 +5897,7 @@ class DbgetterComponent {
|
|
|
5898
5897
|
else {
|
|
5899
5898
|
correspondingCol.parentElement.classList.remove("row-selected");
|
|
5900
5899
|
}
|
|
5900
|
+
this.selectedElements.splice(index, 1);
|
|
5901
5901
|
});
|
|
5902
5902
|
this.selectedElements = new Array();
|
|
5903
5903
|
}
|