gd-bs 6.6.74 → 6.6.76

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.
@@ -597,10 +597,10 @@ var FormControl = /** @class */ (function () {
597
597
  // See if the items were defined
598
598
  if (this._props.items) {
599
599
  // Return the value(s)
600
- return this._cb.getValue();
600
+ return this._cb.getValue().selectedItems;
601
601
  }
602
602
  // Return the value
603
- return this._cb.getValue() ? true : false;
603
+ return this._cb.getValue().selectedItems ? true : false;
604
604
  }
605
605
  // See if this is a dropdown
606
606
  if (this._ddl) {