gd-sprest-bs 10.2.9 → 10.3.2
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/build/components/field/index.js +5 -8
- package/build/components/listForm/index.js +1 -1
- package/dist/gd-sprest-bs-icons.js +1 -1
- package/dist/gd-sprest-bs-icons.js.LICENSE.txt +83 -83
- package/dist/gd-sprest-bs-icons.min.js +1 -1
- package/dist/gd-sprest-bs.js +1 -1
- package/dist/gd-sprest-bs.js.LICENSE.txt +83 -83
- package/dist/gd-sprest-bs.min.js +1 -1
- package/package.json +2 -2
- package/pnpm-lock.yaml +4 -4
- package/src/components/field/index.ts +5 -8
- package/src/components/listForm/index.ts +1 -1
|
@@ -208,14 +208,11 @@ var Field = function (props) {
|
|
|
208
208
|
}
|
|
209
209
|
// Get the items
|
|
210
210
|
var items = getChoiceItems(displayRadioButtons, props.field, props.value);
|
|
211
|
-
//
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
value: null
|
|
217
|
-
}].concat(items);
|
|
218
|
-
}
|
|
211
|
+
// Add a blank entry
|
|
212
|
+
items = [{
|
|
213
|
+
text: "",
|
|
214
|
+
value: null
|
|
215
|
+
}].concat(items);
|
|
219
216
|
// See if we are allowing custom values
|
|
220
217
|
if (allowFillIn) {
|
|
221
218
|
// Set the base validation
|