@eqproject/eqp-dynamic-module 2.10.41 → 2.10.42
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 +9 -3
- package/fesm2015/eqproject-eqp-dynamic-module.mjs +8 -2
- package/fesm2015/eqproject-eqp-dynamic-module.mjs.map +1 -1
- package/fesm2020/eqproject-eqp-dynamic-module.mjs +8 -2
- package/fesm2020/eqproject-eqp-dynamic-module.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -5889,8 +5889,14 @@ class DbgetterComponent {
|
|
|
5889
5889
|
keyused = key;
|
|
5890
5890
|
}
|
|
5891
5891
|
else {
|
|
5892
|
-
|
|
5893
|
-
|
|
5892
|
+
if (row.hasOwnProperty(this.field.DataGetter.DataGetterColumnForce.key)) {
|
|
5893
|
+
valueToBeSet = row[this.field.DataGetter.DataGetterColumnForce.key];
|
|
5894
|
+
keyused = this.field.DataGetter.DataGetterColumnForce.key;
|
|
5895
|
+
}
|
|
5896
|
+
else if (row.hasOwnProperty(key)) {
|
|
5897
|
+
valueToBeSet = row[key];
|
|
5898
|
+
keyused = key;
|
|
5899
|
+
}
|
|
5894
5900
|
}
|
|
5895
5901
|
if (valueToBeSet == null) {
|
|
5896
5902
|
valueToBeSet = "";
|