diff --git a/app/assets/javascripts/projects/pipelines/charts/components/pipeline_status_chart.vue b/app/assets/javascripts/projects/pipelines/charts/components/pipeline_status_chart.vue index 2c09558f87ddf335096e626253dee8ecf0848127..5848ef3ce6c47bced3816f77164af53587f5905b 100644 --- a/app/assets/javascripts/projects/pipelines/charts/components/pipeline_status_chart.vue +++ b/app/assets/javascripts/projects/pipelines/charts/components/pipeline_status_chart.vue @@ -33,7 +33,7 @@ export default { const bars = [ { name: s__('Pipeline|Successful'), data: [] }, { name: s__('Pipeline|Failed'), data: [] }, - { name: s__('Pipeline|Other'), data: [] }, + { name: s__('Pipeline|Other (Cancelled, Skipped)'), data: [] }, ]; this.timeSeries.forEach(({ label, successCount, failedCount, otherCount }) => { diff --git a/locale/gitlab.pot b/locale/gitlab.pot index 6e98507be8f398c80c6e7801ada7e859a8524e13..ea82ab0801ce1fdf0b4c2ac423ca85b0e3fc8d52 100644 --- a/locale/gitlab.pot +++ b/locale/gitlab.pot @@ -43530,7 +43530,7 @@ msgstr "" msgid "Pipeline|Only the first 100 jobs per stage are displayed" msgstr "" -msgid "Pipeline|Other" +msgid "Pipeline|Other (Cancelled, Skipped)" msgstr "" msgid "Pipeline|Passed" diff --git a/spec/frontend/projects/pipelines/charts/components/pipeline_status_chart_spec.js b/spec/frontend/projects/pipelines/charts/components/pipeline_status_chart_spec.js index c649aaa60aa22132db476953ca32d78e9d9c6a21..3ffb30366c70bed86479a6d0f18e55917f916343 100644 --- a/spec/frontend/projects/pipelines/charts/components/pipeline_status_chart_spec.js +++ b/spec/frontend/projects/pipelines/charts/components/pipeline_status_chart_spec.js @@ -36,7 +36,7 @@ describe('PipelineStatusChart', () => { bars: [ { data: [], name: 'Successful' }, { data: [], name: 'Failed' }, - { data: [], name: 'Other' }, + { data: [], name: 'Other (Cancelled, Skipped)' }, ], groupBy: [], customPalette: ['#619025', '#b93d71', '#617ae2'], @@ -61,7 +61,7 @@ describe('PipelineStatusChart', () => { expect(findStackedColumnChart().props('bars')).toEqual([ { data: [10, 11], name: 'Successful' }, { data: [20, 21], name: 'Failed' }, - { data: [30, 31], name: 'Other' }, + { data: [30, 31], name: 'Other (Cancelled, Skipped)' }, ]); });