Skip to content

Commit ceb7f1a

Browse files
committed
Fixed duplicate onChange events on the windows textInput
1 parent 4a8ac5b commit ceb7f1a

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# CHANGELOG
22

3+
## 0.2.14 (September 19th, 2016)
4+
5+
- Fixed duplicate onChange events on the windows textInput
6+
37
## 0.2.13 (August 25th, 2016)
48

59
- Improve macOS title bar control icons

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "react-desktop",
33
"author": "Gabriel Bull",
4-
"version": "0.2.13",
4+
"version": "0.2.14",
55
"description": "React UI Components for macOS Sierra and Windows 10",
66
"main": "./index.js",
77
"keywords": [

src/textInput/windows/textInput.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ class TextInput extends Component {
7171

7272
if (label) {
7373
return (
74-
<div {...props}>
74+
<div>
7575
<Text style={{ marginBottom: '5px' }}>
7676
{label}
7777
</Text>

0 commit comments

Comments
 (0)