Commit 8f188fca authored by Dan Jensen's avatar Dan Jensen Committed by Martin Wortschack

Fix the reversed in-app metric definitions for group-level VSA

parent a7a5ab68
...@@ -9,13 +9,13 @@ import { removeFlash, prepareTimeMetricsData } from '../utils'; ...@@ -9,13 +9,13 @@ import { removeFlash, prepareTimeMetricsData } from '../utils';
const POPOVER_CONTENT = { const POPOVER_CONTENT = {
'lead-time': { 'lead-time': {
description: s__('ValueStreamAnalytics|Median time from issue created to issue closed.'),
},
'cycle-time': {
description: s__( description: s__(
'ValueStreamAnalytics|Median time from issue first merge request created to issue closed.', 'ValueStreamAnalytics|Median time from issue first merge request created to issue closed.',
), ),
}, },
'cycle-time': {
description: s__('ValueStreamAnalytics|Median time from issue created to issue closed.'),
},
'new-issues': { description: s__('ValueStreamAnalytics|Number of new issues created.') }, 'new-issues': { description: s__('ValueStreamAnalytics|Number of new issues created.') },
deploys: { description: s__('ValueStreamAnalytics|Total number of deploys to production.') }, deploys: { description: s__('ValueStreamAnalytics|Total number of deploys to production.') },
'deployment-frequency': { 'deployment-frequency': {
......
...@@ -21,11 +21,11 @@ exports[`TimeMetricsCard Time summary renders the Time summary metric 1`] = ` ...@@ -21,11 +21,11 @@ exports[`TimeMetricsCard Time summary renders the Time summary metric 1`] = `
"<div> "<div>
<div class=\\"gl-pr-9\\"> <div class=\\"gl-pr-9\\">
<gl-single-stat-stub title=\\"Lead Time\\" value=\\"4.5\\" unit=\\"days\\" variant=\\"muted\\" shouldanimate=\\"true\\" animationdecimalplaces=\\"0\\" id=\\"lead-time\\" tabindex=\\"0\\"></gl-single-stat-stub> <gl-single-stat-stub title=\\"Lead Time\\" value=\\"4.5\\" unit=\\"days\\" variant=\\"muted\\" shouldanimate=\\"true\\" animationdecimalplaces=\\"0\\" id=\\"lead-time\\" tabindex=\\"0\\"></gl-single-stat-stub>
<gl-popover-stub cssclasses=\\"\\" target=\\"lead-time\\" placement=\\"bottom\\"> <span>Median time from issue first merge request created to issue closed.</span></gl-popover-stub> <gl-popover-stub cssclasses=\\"\\" target=\\"lead-time\\" placement=\\"bottom\\"> <span>Median time from issue created to issue closed.</span></gl-popover-stub>
</div> </div>
<div class=\\"gl-pr-9\\"> <div class=\\"gl-pr-9\\">
<gl-single-stat-stub title=\\"Cycle Time\\" value=\\"3.0\\" unit=\\"days\\" variant=\\"muted\\" shouldanimate=\\"true\\" animationdecimalplaces=\\"0\\" id=\\"cycle-time\\" tabindex=\\"0\\"></gl-single-stat-stub> <gl-single-stat-stub title=\\"Cycle Time\\" value=\\"3.0\\" unit=\\"days\\" variant=\\"muted\\" shouldanimate=\\"true\\" animationdecimalplaces=\\"0\\" id=\\"cycle-time\\" tabindex=\\"0\\"></gl-single-stat-stub>
<gl-popover-stub cssclasses=\\"\\" target=\\"cycle-time\\" placement=\\"bottom\\"> <span>Median time from issue created to issue closed.</span></gl-popover-stub> <gl-popover-stub cssclasses=\\"\\" target=\\"cycle-time\\" placement=\\"bottom\\"> <span>Median time from issue first merge request created to issue closed.</span></gl-popover-stub>
</div> </div>
</div>" </div>"
`; `;
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment