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.
package/package.json
CHANGED
|
@@ -713,7 +713,7 @@ export class FormControl implements IFormControl {
|
|
|
713
713
|
validation.isValid = value;
|
|
714
714
|
}
|
|
715
715
|
// Else, see if this is a dropdown and ensure it has a value
|
|
716
|
-
else if (this._ddl && value) {
|
|
716
|
+
else if (this._ddl && !this._ddl.isMulti && value) {
|
|
717
717
|
// Set the flag to ensure a text/value exists
|
|
718
718
|
validation.isValid = value.text || value.value ? true : false;
|
|
719
719
|
}
|