Skip to content

Commit

Permalink
fix(server): cv-button default color error issue (#1076)
Browse files Browse the repository at this point in the history
  • Loading branch information
JasmineFan authored Nov 18, 2020
1 parent 905346f commit 451816b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/core/src/components/cv-button/button-mixin.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export default {
kind: {
type: String,
default: 'primary',
validator: val => ['primary', 'secondary', 'tertiary', 'ghost', 'danger', 'danger--primary'].includes(val),
validator: val => ['', 'primary', 'secondary', 'tertiary', 'ghost', 'danger', 'danger--primary'].includes(val),
},
small: {
type: Boolean,
Expand Down

0 comments on commit 451816b

Please sign in to comment.