Merge branch '53888-missing-favicon' into 'master'

Adds back missing CI favicon

Closes #53888

See merge request gitlab-org/gitlab-ce!23002
This commit is contained in:
Phil Hughes 2018-11-13 08:56:24 +00:00
commit 94ab99a8cf
2 changed files with 7 additions and 2 deletions

View file

@ -80,8 +80,8 @@ export const fetchJob = ({ state, dispatch }) => {
export const receiveJobSuccess = ({ commit }, data = {}) => {
commit(types.RECEIVE_JOB_SUCCESS, data);
if (data.favicon) {
setFaviconOverlay(data.favicon);
if (data.status && data.status.favicon) {
setFaviconOverlay(data.status.favicon);
} else {
resetFavicon();
}

View file

@ -0,0 +1,5 @@
---
title: Adds CI favicon back to jobs page
merge_request:
author:
type: fixed