Generate key for each input so we can upload the same file even after deleting

This commit is contained in:
blackle
2017-01-08 21:00:13 -05:00
parent 2e71bb031b
commit 131bae89fd
2 changed files with 4 additions and 2 deletions

View File

@ -11,7 +11,8 @@ const UploadButton = React.createClass({
propTypes: {
disabled: React.PropTypes.bool,
onSelectFile: React.PropTypes.func.isRequired,
style: React.PropTypes.object
style: React.PropTypes.object,
key: React.PropTypes.number
},
mixins: [PureRenderMixin],
@ -36,7 +37,7 @@ const UploadButton = React.createClass({
return (
<div style={this.props.style}>
<IconButton icon='photo' title={intl.formatMessage(messages.upload)} disabled={this.props.disabled} onClick={this.handleClick} size={24} />
<input ref={this.setRef} type='file' multiple={false} onChange={this.handleChange} disabled={this.props.disabled} style={{ display: 'none' }} />
<input key={this.props.key} ref={this.setRef} type='file' multiple={false} onChange={this.handleChange} disabled={this.props.disabled} style={{ display: 'none' }} />
</div>
);
}