gd-bs 6.8.4 → 6.8.5

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.
@@ -708,7 +708,7 @@ var FormControl = /** @class */ (function () {
708
708
  validation.isValid = value;
709
709
  }
710
710
  // Else, see if this is a dropdown and ensure it has a value
711
- else if (this._ddl && value) {
711
+ else if (this._ddl && !this._ddl.isMulti && value) {
712
712
  // Set the flag to ensure a text/value exists
713
713
  validation.isValid = value.text || value.value ? true : false;
714
714
  }