Add tab name Alert#<number> when we view a certain alert (#7987)

This commit is contained in:
florinbilt 2024-03-25 17:47:59 +02:00 коммит произвёл GitHub
Родитель ef61c2e79e
Коммит 56bb810e3a
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: B5690EEEBB952194
1 изменённых файлов: 10 добавлений и 1 удалений

Просмотреть файл

@ -99,7 +99,16 @@ const faviconPaths = {
};
const withFavicon = (element, route) => {
const { title, favicon } = faviconPaths[route];
let { title } = faviconPaths[route];
const { favicon } = faviconPaths[route];
const searchParams = new URLSearchParams(history.location.search);
const id = searchParams.get('id');
if (history.location.pathname === '/perfherder/alerts' && id) {
title = `Alert #${id.toString()}`;
}
return (
<React.Fragment>
<Helmet defaultTitle={title}>