diff --git a/ui/js/actions/app.js b/ui/js/actions/app.js index 8ede77fee..82b402fc0 100644 --- a/ui/js/actions/app.js +++ b/ui/js/actions/app.js @@ -43,6 +43,10 @@ export function doChangePath(path) { path, } }) + + const state = getState() + const pageTitle = selectPageTitle(state) + window.document.title = pageTitle } }