1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-08-13 13:48:59 +02:00

PR comment

Signed-off-by: andreas-unleash <andreas@getunleash.ai>
This commit is contained in:
andreas-unleash 2024-03-21 14:14:28 +02:00
parent 9ae3f937d4
commit 9bd329ee38
No known key found for this signature in database
GPG Key ID: 86EF87A739B39099
2 changed files with 4 additions and 4 deletions

View File

@ -165,7 +165,7 @@ export const Charts: VFC<IChartsProps> = ({
isAggregate={showAllProjects}
/>
</ChartWidget>
<Widget {...chartInfo.averageTimeToProduction}>
<Widget {...chartInfo.medianTimeToProduction}>
<TimeToProduction daysToProduction={avgDaysToProduction} />
</Widget>
<ChartWidget

View File

@ -50,15 +50,15 @@ export const chartInfo = {
tooltip:
'How the overall health changes over time for the selected projects.',
},
averageTimeToProduction: {
title: 'Average time to production',
medianTimeToProduction: {
title: 'Median time to production',
tooltip:
'How long does it currently take on average from when a feature flag was created until it was enabled in a "production" type environment. This is calculated only from feature flags of the type "release" and is averaged across the selected projects.',
},
timeToProduction: {
title: 'Time to production',
tooltip:
'How the average time to production changes over time across all projects.',
'How the median time to production changes over time across all projects.',
},
timeToProductionPerProject: {
title: 'Time to production per project',