Skip to content

Commit

Permalink
Minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
skaptox committed Oct 1, 2020
1 parent 5930942 commit 2f771f3
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
5 changes: 4 additions & 1 deletion src/components/compounds/Tag/Tag.vue
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,10 @@ const Tag = {
type: String,
size: String,
rounded: Boolean,
disabled: Boolean,
disabled: {
type: Boolean,
default: null
},
ellipsis: Boolean,
tabstop: {
type: Boolean,
Expand Down
5 changes: 4 additions & 1 deletion src/components/primitives/Switch/Switch.vue
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,10 @@ const Switch = {
nativeValue: {
type: [String, Number, Boolean, Function, Object, Array, Date],
},
disabled: Boolean,
disabled: {
type: Boolean,
default: null
},
type: String,
passiveType: String,
name: String,
Expand Down

0 comments on commit 2f771f3

Please sign in to comment.