summaryrefslogtreecommitdiffstats
path: root/webapp/components/analytics/system_analytics.jsx
diff options
context:
space:
mode:
authorAsaad Mahmood <asaadmahmood@users.noreply.github.com>2017-03-02 19:10:20 +0500
committerCorey Hulen <corey@hulen.com>2017-03-02 09:10:20 -0500
commit1bd3917e3e6ace6d7f0bb45723a158a011e5c71a (patch)
tree50dc3320658b00582132d926933b8071bb40509a /webapp/components/analytics/system_analytics.jsx
parentf4aebed220667f0022bc902420c62d9841835e80 (diff)
downloadchat-1bd3917e3e6ace6d7f0bb45723a158a011e5c71a.tar.gz
chat-1bd3917e3e6ace6d7f0bb45723a158a011e5c71a.tar.bz2
chat-1bd3917e3e6ace6d7f0bb45723a158a011e5c71a.zip
Ui improvements (#5588)
* PLT-5354 - Making statistics flow on page * PLT-5262 - Updating icon on join team page * PLT-5218 - Making menu colors consistent on mobile * PLT-5377 - Adding bg to current posts in the RHS * PLT-5645 - Adjusting spacing after/before ul/ol
Diffstat (limited to 'webapp/components/analytics/system_analytics.jsx')
-rw-r--r--webapp/components/analytics/system_analytics.jsx24
1 files changed, 13 insertions, 11 deletions
diff --git a/webapp/components/analytics/system_analytics.jsx b/webapp/components/analytics/system_analytics.jsx
index 89cc98f0b..a3517899a 100644
--- a/webapp/components/analytics/system_analytics.jsx
+++ b/webapp/components/analytics/system_analytics.jsx
@@ -217,7 +217,7 @@ class SystemAnalytics extends React.Component {
);
advancedStats = (
- <div className='row'>
+ <div>
<StatisticCount
title={
<FormattedMessage
@@ -388,7 +388,7 @@ class SystemAnalytics extends React.Component {
let secondRow;
if (isLicensed && skippedIntensiveQueries) {
firstRow = (
- <div className='row'>
+ <div>
{userCount}
{teamCount}
{channelCount}
@@ -397,7 +397,7 @@ class SystemAnalytics extends React.Component {
);
secondRow = (
- <div className='row'>
+ <div>
{commandCount}
{incomingCount}
{outgoingCount}
@@ -405,7 +405,7 @@ class SystemAnalytics extends React.Component {
);
} else if (isLicensed && !skippedIntensiveQueries) {
firstRow = (
- <div className='row'>
+ <div>
{userCount}
{teamCount}
{channelCount}
@@ -414,7 +414,7 @@ class SystemAnalytics extends React.Component {
);
secondRow = (
- <div className='row'>
+ <div>
{sessionCount}
{commandCount}
{incomingCount}
@@ -423,7 +423,7 @@ class SystemAnalytics extends React.Component {
);
} else if (!isLicensed) {
firstRow = (
- <div className='row'>
+ <div>
{userCount}
{teamCount}
{channelCount}
@@ -433,7 +433,7 @@ class SystemAnalytics extends React.Component {
}
const thirdRow = (
- <div className='row'>
+ <div>
{dailyActiveUsers}
{monthlyActiveUsers}
</div>
@@ -448,10 +448,12 @@ class SystemAnalytics extends React.Component {
/>
</h3>
{banner}
- {firstRow}
- {secondRow}
- {thirdRow}
- {advancedStats}
+ <div className='row'>
+ {firstRow}
+ {secondRow}
+ {thirdRow}
+ {advancedStats}
+ </div>
{advancedGraphs}
{postTotalGraph}
{activeUserGraph}