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:
commit
94ab99a8cf
2 changed files with 7 additions and 2 deletions
|
@ -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();
|
||||
}
|
||||
|
|
5
changelogs/unreleased/53888-missing-favicon.yml
Normal file
5
changelogs/unreleased/53888-missing-favicon.yml
Normal file
|
@ -0,0 +1,5 @@
|
|||
---
|
||||
title: Adds CI favicon back to jobs page
|
||||
merge_request:
|
||||
author:
|
||||
type: fixed
|
Loading…
Reference in a new issue