diff --git a/scm-ui/ui-components/src/layout/Title.tsx b/scm-ui/ui-components/src/layout/Title.tsx index 13c09ba030..3db2b69bc0 100644 --- a/scm-ui/ui-components/src/layout/Title.tsx +++ b/scm-ui/ui-components/src/layout/Title.tsx @@ -17,7 +17,7 @@ const Title: FC = ({ title, preventRefreshingPageTitle, customPageTitle, document.title = title; } } - }); + },[title, preventRefreshingPageTitle, customPageTitle]); if (title) { return

{title}

;