Remove default home value

Closes #2742.
This commit is contained in:
Asher 2021-03-01 12:58:36 -06:00
parent a5edbcb6b6
commit f526ab87f8
No known key found for this signature in database
GPG Key ID: D63C1EF81242354A
1 changed files with 3 additions and 3 deletions

View File

@ -106,11 +106,11 @@ export class Vscode {
['enableProposedApi', JSON.stringify(options.args['enable-proposed-api'] || [])] ['enableProposedApi', JSON.stringify(options.args['enable-proposed-api'] || [])]
], ],
}, },
homeIndicator: { homeIndicator: options.args.home ? {
href: options.args.home || 'https://github.com/cdr/code-server', href: options.args.home,
icon: 'code', icon: 'code',
title: localize('home', "Home"), title: localize('home', "Home"),
}, } : undefined,
}, },
remoteUserDataUri: transformer.transformOutgoing(URI.file(environment.userDataPath)), remoteUserDataUri: transformer.transformOutgoing(URI.file(environment.userDataPath)),
productConfiguration: product, productConfiguration: product,