summaryrefslogtreecommitdiffstats
path: root/web
diff options
context:
space:
mode:
authorChristopher Speller <crspeller@gmail.com>2015-08-21 08:24:55 -0400
committerChristopher Speller <crspeller@gmail.com>2015-08-21 08:24:55 -0400
commit77fc2c0967afc8f2fea0ab8b332b345d63c82aac (patch)
treea63172f82fc7a04d4c9899d408c608c93ec15f1e /web
parente1c2f5ae8e29f49b8762a46fa121e5642f4a1795 (diff)
parent8ea10942a2e2ea66ff9d0ebdc0d517c646b03651 (diff)
downloadchat-77fc2c0967afc8f2fea0ab8b332b345d63c82aac.tar.gz
chat-77fc2c0967afc8f2fea0ab8b332b345d63c82aac.tar.bz2
chat-77fc2c0967afc8f2fea0ab8b332b345d63c82aac.zip
Merge pull request #435 from mattermost/it33-patch-2
Fixing typo "Summery" -> "Summary"
Diffstat (limited to 'web')
-rw-r--r--web/react/components/team_import_tab.jsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/web/react/components/team_import_tab.jsx b/web/react/components/team_import_tab.jsx
index 131add999..ae7f875cb 100644
--- a/web/react/components/team_import_tab.jsx
+++ b/web/react/components/team_import_tab.jsx
@@ -39,12 +39,12 @@ module.exports = React.createClass({
break;
case 'done':
messageSection = (
- <p>Import sucessfull: <a href={this.state.link} download='MattermostImportSummery.txt'>View Summery</a></p>
+ <p>Import sucessfull: <a href={this.state.link} download='MattermostImportSummary.txt'>View Summary</a></p>
);
break;
case 'fail':
messageSection = (
- <p>Import failure: <a href={this.state.link} download='MattermostImportSummery.txt'>View Summery</a></p>
+ <p>Import failure: <a href={this.state.link} download='MattermostImportSummary.txt'>View Summary</a></p>
);
break;
}