Skip to content

Commit

Permalink
forward port of #10724 (#10725)
Browse files Browse the repository at this point in the history
  • Loading branch information
bollwyvl committed Aug 5, 2021
1 parent 7ceeae9 commit dffbe88
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/apputils-extension/src/index.ts
Expand Up @@ -335,7 +335,7 @@ async function updateTabTitle(workspace: string, db: IStateDB, name: string) {
const data: any = await db.toJSON();
let current: string = data['layout-restorer:data']?.main?.current;
if (current === undefined) {
document.title = `JupyterLab${
document.title = `${PageConfig.getOption('appName') || 'JupyterLab'}${
workspace.startsWith('auto-') ? ` (${workspace})` : ``
}`;
} else {
Expand Down

0 comments on commit dffbe88

Please sign in to comment.