Skip to content
代码片段 群组 项目
未验证 提交 d0d4fe04 编辑于 作者: Enrique Alcántara's avatar Enrique Alcántara 提交者: GitLab
浏览文件

Merge branch '469603-add-detail-to-other-label' into 'master'

No related branches found
No related tags found
2 合并请求!3031Merge per-main-jh to main-jh by luzhiyuan,!3030Merge per-main-jh to main-jh
......@@ -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 }) => {
......
......@@ -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"
......@@ -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)' },
]);
});
......
0% 加载中 .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册