summaryrefslogtreecommitdiffstats
path: root/web/react/components/activity_log_modal.jsx
diff options
context:
space:
mode:
authorAsaad Mahmood <Unknowngi@live.com>2015-07-23 00:54:40 +0500
committerAsaad Mahmood <Unknowngi@live.com>2015-07-23 00:54:40 +0500
commit14c1f2424de88545ec7e4386d53751cb3ec7d825 (patch)
tree400c515ec5dd2f2fc8e836ed9ad8fc23d2c82047 /web/react/components/activity_log_modal.jsx
parentecdd160ec07aef5d309056a23eacf12c91a93193 (diff)
downloadchat-14c1f2424de88545ec7e4386d53751cb3ec7d825.tar.gz
chat-14c1f2424de88545ec7e4386d53751cb3ec7d825.tar.bz2
chat-14c1f2424de88545ec7e4386d53751cb3ec7d825.zip
Minor UI Improvements
Diffstat (limited to 'web/react/components/activity_log_modal.jsx')
-rw-r--r--web/react/components/activity_log_modal.jsx5
1 files changed, 4 insertions, 1 deletions
diff --git a/web/react/components/activity_log_modal.jsx b/web/react/components/activity_log_modal.jsx
index d6f8f40eb..7cce807a9 100644
--- a/web/react/components/activity_log_modal.jsx
+++ b/web/react/components/activity_log_modal.jsx
@@ -68,6 +68,9 @@ module.exports = React.createClass({
else if (currentSession.props.platform === "Macintosh" || currentSession.props.platform === "iPhone") {
devicePicture = "fa fa-apple";
}
+ else if (currentSession.props.platform === "Linux") {
+ devicePicture = "fa fa-linux";
+ }
activityList[i] = (
<div className="activity-log__table">
@@ -83,7 +86,7 @@ module.exports = React.createClass({
<div>{"Session ID: " + currentSession.alt_id}</div>
</div>
:
- <a href="#" onClick={this.handleMoreInfo.bind(this, i)}>More info</a>
+ <a className="theme" href="#" onClick={this.handleMoreInfo.bind(this, i)}>More info</a>
}
</div>
</div>