diff --git a/scm-ui/ui-components/src/layout/Page.tsx b/scm-ui/ui-components/src/layout/Page.tsx index fe8ace9253..128337fd73 100644 --- a/scm-ui/ui-components/src/layout/Page.tsx +++ b/scm-ui/ui-components/src/layout/Page.tsx @@ -30,7 +30,7 @@ const PageActionContainer = styled.div` export default class Page extends React.Component { componentDidUpdate() { const { title } = this.props; - if (document.title !== title) { + if (title && title !== document.title) { document.title = title; } }