summaryrefslogtreecommitdiffstats
path: root/web/react/components/setting_upload.jsx
diff options
context:
space:
mode:
authorit33 <iantien@gmail.com>2015-08-20 23:20:42 -0700
committerit33 <iantien@gmail.com>2015-08-20 23:20:42 -0700
commitf23f37761274153e081563bf34df962ced324bd7 (patch)
tree9417653cc6e559248038dbd19db78e67f21d352e /web/react/components/setting_upload.jsx
parent08941cf554bc88ca95f933cd2831fd6c6f2d49e9 (diff)
downloadchat-f23f37761274153e081563bf34df962ced324bd7.tar.gz
chat-f23f37761274153e081563bf34df962ced324bd7.tar.bz2
chat-f23f37761274153e081563bf34df962ced324bd7.zip
Fixing typo "SelectFile" -> "Select File"
Diffstat (limited to 'web/react/components/setting_upload.jsx')
-rw-r--r--web/react/components/setting_upload.jsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/web/react/components/setting_upload.jsx b/web/react/components/setting_upload.jsx
index 870710850..83b6d85fc 100644
--- a/web/react/components/setting_upload.jsx
+++ b/web/react/components/setting_upload.jsx
@@ -67,7 +67,7 @@ module.exports = React.createClass({
<li className='setting-list-item'>
{serverError}
{clientError}
- <span className='btn btn-sm btn-primary btn-file sel-btn'>SelectFile<input ref='uploadinput' accept={this.props.fileTypesAccepted} type='file' onChange={this.onFileSelect}/></span>
+ <span className='btn btn-sm btn-primary btn-file sel-btn'>Select File<input ref='uploadinput' accept={this.props.fileTypesAccepted} type='file' onChange={this.onFileSelect}/></span>
<a className={'btn btn-sm btn-primary'} onClick={this.doSubmit}>Import</a>
<a className='btn btn-sm theme' href='#' onClick={this.doCancel}>Cancel</a>
</li>