Skip to content

Commit

Permalink
Merge pull request #195 from supplycart/ST-12029/fix/dropdown-input
Browse files Browse the repository at this point in the history
ST-12029 FIX Dropdown input value type
  • Loading branch information
shonggeok authored Nov 15, 2024
2 parents 03cd767 + bc4d275 commit 30329e8
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@supplycart/ui",
"version": "1.15.2",
"version": "1.15.3",
"repository": {
"type": "git",
"url": "https://github.com/supplycart/ui"
Expand Down
2 changes: 1 addition & 1 deletion src/address/components/Address.vue
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export default {
},
props: {
value: {
type: Object,
type: [Array, Object],
default: () => ({}),
},
country: {
Expand Down
2 changes: 1 addition & 1 deletion src/address/mixins/address.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import addressConfig from "../constants/addressConfig";
export default {
props: {
value: {
type: Object,
type: [Array, Object],
default: () => ({}),
},
display: {
Expand Down
2 changes: 1 addition & 1 deletion src/form/components/DropdownInput.vue
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ export default {
default: null,
},
value: {
type: [String, Number, Array, Object],
type: [String, Number, Array, Object, Boolean],
default: null,
},
error: {
Expand Down

0 comments on commit 30329e8

Please sign in to comment.