summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorit33 <iantien@gmail.com>2015-08-20 23:26:55 -0700
committerit33 <iantien@gmail.com>2015-08-20 23:26:55 -0700
commit8ea10942a2e2ea66ff9d0ebdc0d517c646b03651 (patch)
treeaaa2c4a10c067650d23a6713b98d28430daadeb5
parent08941cf554bc88ca95f933cd2831fd6c6f2d49e9 (diff)
downloadchat-8ea10942a2e2ea66ff9d0ebdc0d517c646b03651.tar.gz
chat-8ea10942a2e2ea66ff9d0ebdc0d517c646b03651.tar.bz2
chat-8ea10942a2e2ea66ff9d0ebdc0d517c646b03651.zip
Fixing typo "Summery" -> "Summary"
-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;
}