Skip to content
Snippets Groups Projects
Unverified Commit 0c17fd91 authored by Claire's avatar Claire Committed by GitHub
Browse files

Change title of retention chart (#16909)

Changes from “Retention” to “User retention rate by month after sign-up”.
This should make it much clearer to people not familiar with retention charts
what it actually means.
parent 40f202c1
No related branches found
No related tags found
No related merge requests found
......@@ -42,6 +42,7 @@ export default class Retention extends React.PureComponent {
render () {
const { loading, data } = this.state;
const { frequency } = this.props;
let content;
......@@ -129,9 +130,18 @@ export default class Retention extends React.PureComponent {
);
}
let title = null;
switch(frequency) {
case 'day':
title = <FormattedMessage id='admin.dashboard.daily_retention' defaultMessage='User retention rate by day after sign-up' />;
break;
default:
title = <FormattedMessage id='admin.dashboard.monthly_retention' defaultMessage='User retention rate by month after sign-up' />;
};
return (
<div className='retention'>
<h4><FormattedMessage id='admin.dashboard.retention' defaultMessage='Retention' /></h4>
<h4>{title}</h4>
{content}
</div>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment