Skip to content

Commit

Permalink
fix(input-group): BS V4.beta CSS no longer has the has-${state} cla…
Browse files Browse the repository at this point in the history
…sses (#1155)
  • Loading branch information
tmorehouse committed Oct 3, 2017
1 parent 2a7cade commit 9f4df16
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions lib/components/input-group.vue
Expand Up @@ -27,8 +27,7 @@
classObject() {
return [
'input-group',
this.size ? ('input-group-' + this.size) : '',
this.state ? ('has-' + this.state) : ''
this.size ? ('input-group-' + this.size) : ''
];
}
},
Expand All @@ -41,10 +40,6 @@
type: String,
default: null
},
state: {
type: String,
default: null
},
left: {
type: String,
default: null
Expand Down

0 comments on commit 9f4df16

Please sign in to comment.