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 = {}) => {
|
export const receiveJobSuccess = ({ commit }, data = {}) => {
|
||||||
commit(types.RECEIVE_JOB_SUCCESS, data);
|
commit(types.RECEIVE_JOB_SUCCESS, data);
|
||||||
|
|
||||||
if (data.favicon) {
|
if (data.status && data.status.favicon) {
|
||||||
setFaviconOverlay(data.favicon);
|
setFaviconOverlay(data.status.favicon);
|
||||||
} else {
|
} else {
|
||||||
resetFavicon();
|
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