classcard-ui 0.2.182 → 0.2.183

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.182",
3
+ "version": "0.2.183",
4
4
  "main": "dist/classcard-ui.common.js",
5
5
  "scripts": {
6
6
  "serve": "vue-cli-service serve",
@@ -181,7 +181,7 @@ export default {
181
181
  data() {
182
182
  return {
183
183
  toggleDropdown: false,
184
- selectedValue: this.value ? this.value || this.value.option : "",
184
+ selectedValue: this.value !== null && this.value.option ? this.value.option : this.value,
185
185
  showSelectedValue: false,
186
186
  showFocus: false,
187
187
  };