[Glitch] Fix retention dashboard not displaying correct month
Port 7fddeca190
to glitch-soc
Signed-off-by: Claire <claire.github-309c@sitedethib.com>
This commit is contained in:
parent
19ebf7797e
commit
cfc0da77ac
|
@ -9,11 +9,12 @@ import api from 'flavours/glitch/api';
|
||||||
import { roundTo10 } from 'flavours/glitch/utils/numbers';
|
import { roundTo10 } from 'flavours/glitch/utils/numbers';
|
||||||
|
|
||||||
const dateForCohort = cohort => {
|
const dateForCohort = cohort => {
|
||||||
|
const timeZone = 'UTC';
|
||||||
switch(cohort.frequency) {
|
switch(cohort.frequency) {
|
||||||
case 'day':
|
case 'day':
|
||||||
return <FormattedDate value={cohort.period} month='long' day='2-digit' />;
|
return <FormattedDate value={cohort.period} month='long' day='2-digit' timeZone={timeZone} />;
|
||||||
default:
|
default:
|
||||||
return <FormattedDate value={cohort.period} month='long' year='numeric' />;
|
return <FormattedDate value={cohort.period} month='long' year='numeric' timeZone={timeZone} />;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue