tuain-ng-forms-lib 12.0.83 → 12.0.84
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.
|
@@ -1444,8 +1444,7 @@
|
|
|
1444
1444
|
configurable: true
|
|
1445
1445
|
});
|
|
1446
1446
|
TableRecordData.prototype.getFieldValue = function (fieldCode) {
|
|
1447
|
-
return (fieldCode && this.recordData[fieldCode]
|
|
1448
|
-
? this.recordData[fieldCode] : null;
|
|
1447
|
+
return (fieldCode && this.recordData) ? this.recordData[fieldCode] : null;
|
|
1449
1448
|
};
|
|
1450
1449
|
TableRecordData.prototype.hasPattern = function (words) {
|
|
1451
1450
|
var e_1, _a;
|