Commit 66e7f126 authored by Fatih Acet's avatar Fatih Acet

Merge branch '25961-spec-list-blank' into 'master'

Fix dropdown content non appearing in MR view

Closes #25961

See merge request !8255
parents 96822b69 fab2f071
...@@ -140,11 +140,6 @@ ...@@ -140,11 +140,6 @@
case 'projects:merge_requests:commits': case 'projects:merge_requests:commits':
new MergedButtons(); new MergedButtons();
break; break;
case 'projects:merge_requests:pipelines':
new gl.MiniPipelineGraph({
container: '.js-pipeline-table',
});
break;
case "projects:merge_requests:diffs": case "projects:merge_requests:diffs":
new gl.Diff(); new gl.Diff();
new ZenMode(); new ZenMode();
......
...@@ -259,6 +259,10 @@ ...@@ -259,6 +259,10 @@
gl.utils.localTimeAgo($('.js-timeago', '#pipelines')); gl.utils.localTimeAgo($('.js-timeago', '#pipelines'));
this.pipelinesLoaded = true; this.pipelinesLoaded = true;
this.scrollToElement('#pipelines'); this.scrollToElement('#pipelines');
new gl.MiniPipelineGraph({
container: '.js-pipeline-table',
});
}, },
}); });
} }
......
...@@ -52,6 +52,10 @@ ...@@ -52,6 +52,10 @@
} }
} }
.content-list.pipelines .table-holder {
min-height: 300px;
}
.pipeline-holder { .pipeline-holder {
width: 100%; width: 100%;
overflow: auto; overflow: auto;
......
---
title: Fix Pipeline builds list blank on MR
merge_request: 8255
author:
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