@optimiser/common 1.0.297 → 1.0.298
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/dist/lib/utility.js +3 -0
- package/package.json +1 -1
package/dist/lib/utility.js
CHANGED
|
@@ -4576,6 +4576,9 @@ function ValidateUserInput(options) {
|
|
|
4576
4576
|
}
|
|
4577
4577
|
fieldName = pageField.Name;
|
|
4578
4578
|
fieldData = inputFields[fieldName];
|
|
4579
|
+
if (pageField.IsDisplayOnly) {
|
|
4580
|
+
delete inputFields[pageField.Name];
|
|
4581
|
+
}
|
|
4579
4582
|
field = schemaFields.find(function (x) { return x.Name == fieldName; });
|
|
4580
4583
|
if (!field) return [3 /*break*/, 52];
|
|
4581
4584
|
if (fieldData && IsStringValue(fieldData) && field.UIDataType != 'dropdown') {
|