File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " react-file-reader-input" ,
3
- "version" : " 1.1.2 " ,
3
+ "version" : " 1.1.3 " ,
4
4
"description" : " React file input component for complete control over styling and abstraction from file reading." ,
5
5
"main" : " ./lib/index.js" ,
6
6
"devDependencies" : {
Original file line number Diff line number Diff line change @@ -78,7 +78,7 @@ export default class FileInput extends React.Component {
78
78
const { as, style, ...props } = this . props ;
79
79
80
80
return (
81
- < div className = "_react-file-reader-input" onClick = { this . triggerInput } style = { props . style } >
81
+ < div className = "_react-file-reader-input" onClick = { this . triggerInput } style = { style } >
82
82
< input { ...props } children = { undefined } type = "file"
83
83
onChange = { this . handleChange } ref = { c => this . _reactFileReaderInput = c }
84
84
onClick = { ( ) => { this . _reactFileReaderInput . value = null ; } }
You can’t perform that action at this time.
0 commit comments