summaryrefslogtreecommitdiffstats
path: root/web/react/components/sidebar.jsx
diff options
context:
space:
mode:
authorCorey Hulen <corey@hulen.com>2016-01-13 09:03:01 -0600
committerCorey Hulen <corey@hulen.com>2016-01-13 09:03:01 -0600
commit1e1864d78fb1ccb0d93e418f2eaa9f438838bd76 (patch)
tree032bf6fb6a3dc4d521933be9c1c5afbc30561c47 /web/react/components/sidebar.jsx
parent75ae098dfe57c3350861e633b680e6489900d884 (diff)
parente9c2fd7cbb0fd35531096af89345d400125809f0 (diff)
downloadchat-1e1864d78fb1ccb0d93e418f2eaa9f438838bd76.tar.gz
chat-1e1864d78fb1ccb0d93e418f2eaa9f438838bd76.tar.bz2
chat-1e1864d78fb1ccb0d93e418f2eaa9f438838bd76.zip
Merge pull request #1853 from asaadmahmoodspin/ui-improvements
Adding away icon and changing online and offline icons
Diffstat (limited to 'web/react/components/sidebar.jsx')
-rw-r--r--web/react/components/sidebar.jsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/web/react/components/sidebar.jsx b/web/react/components/sidebar.jsx
index 18c360cb8..eaeb7bb91 100644
--- a/web/react/components/sidebar.jsx
+++ b/web/react/components/sidebar.jsx
@@ -372,7 +372,7 @@ export default class Sidebar extends React.Component {
if (channel.status === 'online') {
statusIcon = Constants.ONLINE_ICON_SVG;
} else if (channel.status === 'away') {
- statusIcon = Constants.ONLINE_ICON_SVG;
+ statusIcon = Constants.AWAY_ICON_SVG;
} else {
statusIcon = Constants.OFFLINE_ICON_SVG;
}