Skip to content

Commit d7b960a

Browse files
authored
Merge pull request #163 from coreui/dev-v2.1.5
v2.1.5
2 parents 38fbae5 + 7ac9b8e commit d7b960a

File tree

4 files changed

+9
-6
lines changed

4 files changed

+9
-6
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
## [CoreUI for Vue.js](./README.md) version `changelog`
22

3+
##### `v2.1.5`
4+
- fix(Forms): textarea is not textarea #161 - thanks @l2aelba
5+
- chore: lock `bootstrap-vue` to `2.0.0-rc.24`
6+
37
##### `v2.1.4`
48
- fix(jest.config): babel-jest can't process import statement
59
- chore(package.json): add missing `repository` url

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@coreui/coreui-free-vue-admin-template",
3-
"version": "2.1.4",
3+
"version": "2.1.5",
44
"description": "Open Source Bootstrap Admin Template",
55
"author": "Łukasz Holeczek",
66
"homepage": "http://coreui.io",
@@ -24,7 +24,7 @@
2424
"@coreui/icons": "0.3.0",
2525
"@coreui/vue": "^2.1.2",
2626
"bootstrap": "^4.3.1",
27-
"bootstrap-vue": "^2.0.0-rc.24",
27+
"bootstrap-vue": "2.0.0-rc.24",
2828
"chart.js": "^2.8.0",
2929
"core-js": "^2.6.9",
3030
"css-vars-ponyfill": "^2.0.2",

src/views/base/Forms.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@
152152
label-for="basicTextarea"
153153
:label-cols="3"
154154
>
155-
<b-form-input id="basicTextarea" :textarea="true" :rows="9" placeholder="Content.."></b-form-input>
155+
<b-form-textarea id="basicTextarea" :rows="9" placeholder="Content.."></b-form-textarea>
156156
</b-form-group>
157157
<b-form-group
158158
label="Select"

tests/unit/views/base/__snapshots__/Forms.spec.js.snap

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -450,13 +450,12 @@ exports[`Forms.vue renders correctly 1`] = `
450450
labelcols="3"
451451
labelfor="basicTextarea"
452452
>
453-
<b-form-input-stub
453+
<b-form-textarea-stub
454454
id="basicTextarea"
455455
placeholder="Content.."
456456
rows="9"
457-
textarea="true"
458-
type="text"
459457
value=""
458+
wrap="soft"
460459
/>
461460
</b-form-group-stub>
462461

0 commit comments

Comments
 (0)