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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gd-bs",
3
- "version": "6.8.4",
3
+ "version": "6.8.5",
4
4
  "description": "Bootstrap JavaScript, TypeScript and Web Components library.",
5
5
  "main": "build/index.js",
6
6
  "typings": "src/index.d.ts",
@@ -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
  }