summaryrefslogtreecommitdiffstats
path: root/web/react/components
diff options
context:
space:
mode:
authorChristopher Speller <crspeller@gmail.com>2015-08-21 08:24:31 -0400
committerChristopher Speller <crspeller@gmail.com>2015-08-21 08:24:31 -0400
commite1c2f5ae8e29f49b8762a46fa121e5642f4a1795 (patch)
treefed4fcac763e9491fa08533dfc4250c5b0e517bd /web/react/components
parent8c59e3395c5fe7de04896a371a181cc8bbc5937f (diff)
parentf23f37761274153e081563bf34df962ced324bd7 (diff)
downloadchat-e1c2f5ae8e29f49b8762a46fa121e5642f4a1795.tar.gz
chat-e1c2f5ae8e29f49b8762a46fa121e5642f4a1795.tar.bz2
chat-e1c2f5ae8e29f49b8762a46fa121e5642f4a1795.zip
Merge pull request #434 from mattermost/it33-patch-1
Fixing typo "SelectFile" -> "Select File"
Diffstat (limited to 'web/react/components')
-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>