classcard-ui 0.2.136 → 0.2.137

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": "classcard-ui",
3
- "version": "0.2.136",
3
+ "version": "0.2.137",
4
4
  "main": "dist/classcard-ui.common.js",
5
5
  "scripts": {
6
6
  "serve": "vue-cli-service serve",
@@ -51,7 +51,7 @@
51
51
  role="listbox"
52
52
  aria-labelledby="listbox-label"
53
53
  aria-activedescendant="listbox-option-3"
54
- v-if="showDropDown"
54
+ v-if="showDropDown && options.length > 0"
55
55
  >
56
56
  <!--
57
57
  Select option, manage highlight styles based on mouseenter/mouseleave and keyboard navigation.
@@ -126,7 +126,7 @@ export default {
126
126
  name: "CGroupedSelect",
127
127
  props: {
128
128
  label: String,
129
- options: Object,
129
+ options: Array,
130
130
  value: Object,
131
131
  placeholder: String,
132
132
  },