summaryrefslogtreecommitdiffstats
path: root/web/react/components/activity_log_modal.jsx
diff options
context:
space:
mode:
authorCorey Hulen <corey@hulen.com>2015-07-22 18:17:15 -0800
committerCorey Hulen <corey@hulen.com>2015-07-22 18:17:15 -0800
commit37c8193dceb37dc6bd2d38b50fdbe0b4647bff2f (patch)
tree5171e58aa21990f53db8a5cca393cfe47aa8f5ef /web/react/components/activity_log_modal.jsx
parentf4c3eaa8c091366a956fa2ab48124190f4f9082b (diff)
parent78e3cdefb94c0fe378e4046e79e27be3c7997cb5 (diff)
downloadchat-37c8193dceb37dc6bd2d38b50fdbe0b4647bff2f.tar.gz
chat-37c8193dceb37dc6bd2d38b50fdbe0b4647bff2f.tar.bz2
chat-37c8193dceb37dc6bd2d38b50fdbe0b4647bff2f.zip
Merge pull request #240 from asaadmahmoodspin/master
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>