summaryrefslogtreecommitdiffstats
path: root/web/react/components/search_results.jsx
diff options
context:
space:
mode:
authorCorey Hulen <corey@hulen.com>2015-07-01 22:21:09 -0800
committerCorey Hulen <corey@hulen.com>2015-07-01 22:21:09 -0800
commit3757bc85fb5699e096d59d61f572af8e6c3a6ec6 (patch)
tree1e789cb9484586f636eda089ad6b26ea7d884cf3 /web/react/components/search_results.jsx
parentc0de5c37f0d2bc497d317e78bbb8ce8c38bc2424 (diff)
parent27eeabafe096013f1d0d368a65fe71ef230eab50 (diff)
downloadchat-3757bc85fb5699e096d59d61f572af8e6c3a6ec6.tar.gz
chat-3757bc85fb5699e096d59d61f572af8e6c3a6ec6.tar.bz2
chat-3757bc85fb5699e096d59d61f572af8e6c3a6ec6.zip
Merge pull request #115 from nickago/MM-1425
MM-1425 Facelifted "direct message" to "private message"
Diffstat (limited to 'web/react/components/search_results.jsx')
-rw-r--r--web/react/components/search_results.jsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/web/react/components/search_results.jsx b/web/react/components/search_results.jsx
index 15c2b37a2..003a38b7e 100644
--- a/web/react/components/search_results.jsx
+++ b/web/react/components/search_results.jsx
@@ -79,7 +79,7 @@ SearchItem = React.createClass({
if (channel) {
if (channel.type === 'D') {
- channelName = "Direct Message";
+ channelName = "Private Message";
} else {
channelName = channel.display_name;
}