Skip to content

Commit 5a828c5

Browse files
committed
[2.5.9] Do not pass label prop to <Input /> and <InputNumber />
1 parent 6635129 commit 5a828c5

File tree

5 files changed

+8
-3
lines changed

5 files changed

+8
-3
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## 2.5.9
2+
3+
### Fixed
4+
5+
- Do not pass `label` prop to `<Input />` and `<InputNumber />`
6+
17
## 2.5.8
28

39
### Fixed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,7 @@ See demo at [https://detools.github.io/vue-form](https://detools.github.io/vue-f
7979

8080
## Changelog
8181

82+
- [2.5.9](/CHANGELOG.md#259)
8283
- [2.5.8](/CHANGELOG.md#258)
8384
- [2.5.7](/CHANGELOG.md#257)
8485
- [2.5.6](/CHANGELOG.md#256)

VueForm/components/ConnectedInput.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,6 @@ const ConnectedInput = {
8686
resize={this.resize}
8787
autofocus={this.autofocus}
8888
form={this.form}
89-
label={this.label}
9089
tabindex={this.tabindex}
9190
on-input={setValue}
9291
on-focus={this.handleFocus}

VueForm/components/ConnectedInputNumber.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,6 @@ const ConnectedInputNumber = {
6464
disabled={this.disabled}
6565
controls={this.controls}
6666
controls-position={this.controlsPosition}
67-
label={this.label}
6867
on-input={setValue}
6968
on-focus={this.handleFocus}
7069
on-blur={this.handleFieldBlur}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@detools/vue-form",
3-
"version": "2.5.8",
3+
"version": "2.5.9",
44
"description": "Form State Management for VueJS",
55
"main": "VueForm/index.js",
66
"scripts": {

0 commit comments

Comments
 (0)