diff --git a/shell/initialize/entry-helpers.js b/shell/initialize/entry-helpers.js index 4c1a86f4da..32507d7184 100644 --- a/shell/initialize/entry-helpers.js +++ b/shell/initialize/entry-helpers.js @@ -264,12 +264,8 @@ export async function mountApp(appPartials, VueClass) { // Add beforeEach router hooks router.beforeEach(render.bind(vueApp)); - router.beforeEach((from, to, next) => { - if (from?.name !== to?.name) { - updatePageTitle(getVendor()); - } - - next(); + router.afterEach((from, to) => { + updatePageTitle(getVendor()); }); // First render on client-side