mirror of
https://github.com/plan-player-analytics/Plan.git
synced 2024-12-21 05:50:18 +08:00
Correct playerbase trends table
- now and then were flipped wrong way around Affects issues: - Fixed #2772
This commit is contained in:
parent
ce41dd67dc
commit
6ed2404040
@ -22,28 +22,28 @@ const PlayerbaseTrendsCard = ({data}) => {
|
||||
<ComparisonTable comparisonHeader={t('html.text.comparing30daysAgo')}
|
||||
headers={[t('html.label.thirtyDaysAgo'), t('html.label.now'), t('html.label.trend')]}>
|
||||
<TableRow icon={faUsers} color="black" text={t('html.label.totalPlayers')}
|
||||
values={[data.total_players_now, data.total_players_then,
|
||||
values={[data.total_players_then, data.total_players_now,
|
||||
<BigTrend trend={data.total_players_trend}/>]}/>
|
||||
<TableRow icon={faUsers} color="lime" text={t('html.label.regularPlayers')}
|
||||
values={[data.regular_players_now, data.regular_players_then,
|
||||
values={[data.regular_players_then, data.regular_players_now,
|
||||
<BigTrend trend={data.regular_players_trend}/>]}/>
|
||||
<TableRow icon={faClock} color="green"
|
||||
text={t('html.label.averagePlaytime') + ' ' + t('html.label.perPlayer')}
|
||||
values={[data.playtime_avg_now, data.playtime_avg_then,
|
||||
values={[data.playtime_avg_then, data.playtime_avg_now,
|
||||
<BigTrend trend={data.playtime_avg_trend}/>]}/>
|
||||
<TableRow icon={faClock} color="gray" text={t('html.label.afk') + ' ' + t('html.label.perPlayer')}
|
||||
values={[data.afk_now, data.afk_then, <BigTrend trend={data.afk_trend}/>]}/>
|
||||
values={[data.afk_then, data.afk_now, <BigTrend trend={data.afk_trend}/>]}/>
|
||||
<TableRow icon={faClock} color="green"
|
||||
text={t('html.label.averagePlaytime') + ' ' + t('html.label.perRegularPlayer')}
|
||||
values={[data.regular_playtime_avg_now, data.regular_playtime_avg_then,
|
||||
values={[data.regular_playtime_avg_then, data.regular_playtime_avg_now,
|
||||
<BigTrend trend={data.regular_playtime_avg_trend}/>]}/>
|
||||
<TableRow icon={faClock} color="teal"
|
||||
text={t('html.label.averageSessionLength') + ' ' + t('html.label.perRegularPlayer')}
|
||||
values={[data.regular_session_avg_now, data.regular_session_avg_then,
|
||||
values={[data.regular_session_avg_then, data.regular_session_avg_now,
|
||||
<BigTrend trend={data.regular_session_avg_trend}/>]}/>
|
||||
<TableRow icon={faClock} color="gray"
|
||||
text={t('html.label.afk') + ' ' + t('html.label.perRegularPlayer')}
|
||||
values={[data.regular_afk_avg_now, data.regular_afk_avg_then,
|
||||
values={[data.regular_afk_avg_then, data.regular_afk_avg_now,
|
||||
<BigTrend trend={data.regular_afk_avg_trend}/>]}/>
|
||||
</ComparisonTable>
|
||||
</Card>
|
||||
|
Loading…
Reference in New Issue
Block a user