Skip to content

Commit 9f4df16

Browse files
authored
fix(input-group): BS V4.beta CSS no longer has the has-${state} classes (#1155)
1 parent 2a7cade commit 9f4df16

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

lib/components/input-group.vue

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,7 @@
2727
classObject() {
2828
return [
2929
'input-group',
30-
this.size ? ('input-group-' + this.size) : '',
31-
this.state ? ('has-' + this.state) : ''
30+
this.size ? ('input-group-' + this.size) : ''
3231
];
3332
}
3433
},
@@ -41,10 +40,6 @@
4140
type: String,
4241
default: null
4342
},
44-
state: {
45-
type: String,
46-
default: null
47-
},
4843
left: {
4944
type: String,
5045
default: null

0 commit comments

Comments
 (0)