gd-bs 6.6.47 → 6.6.48
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.
|
@@ -718,6 +718,11 @@ var _Dropdown = /** @class */ (function (_super) {
|
|
|
718
718
|
this._items[ddl.selectedIndex].toggle();
|
|
719
719
|
}
|
|
720
720
|
}
|
|
721
|
+
// See if no value is selected and the label exists
|
|
722
|
+
if (value == null && this.props.label) {
|
|
723
|
+
// Set the label
|
|
724
|
+
this.setLabel(this.props.label);
|
|
725
|
+
}
|
|
721
726
|
// See if a change event exists
|
|
722
727
|
if (this._initFl && this.props.onChange) {
|
|
723
728
|
// Execute the change event
|