Stop CI notification showing when status is nil
This commit is contained in:
parent
4bf4612cfb
commit
d6c4453a92
1 changed files with 1 additions and 1 deletions
|
@ -176,7 +176,7 @@ import MiniPipelineGraph from './mini_pipeline_graph_dropdown';
|
|||
_this.opts.ci_sha = data.sha;
|
||||
_this.updateCommitUrls(data.sha);
|
||||
}
|
||||
if (showNotification) {
|
||||
if (showNotification && data.status) {
|
||||
status = _this.ciLabelForStatus(data.status);
|
||||
if (status === "preparing") {
|
||||
title = _this.opts.ci_title.preparing;
|
||||
|
|
Loading…
Reference in a new issue