gd-bs 6.6.11 → 6.6.12
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.
|
@@ -415,8 +415,9 @@ var _Dropdown = /** @class */ (function (_super) {
|
|
|
415
415
|
var currentItem = {};
|
|
416
416
|
// See if this is a string
|
|
417
417
|
if (typeof (currentValue) == "string") {
|
|
418
|
-
// Set the text
|
|
418
|
+
// Set the text and value properties
|
|
419
419
|
currentItem.text = currentValue;
|
|
420
|
+
currentItem.value = currentValue;
|
|
420
421
|
}
|
|
421
422
|
else {
|
|
422
423
|
// Set the item
|