We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a5edbcb commit f526ab8Copy full SHA for f526ab8
lib/vscode/src/vs/server/node/server.ts
@@ -106,11 +106,11 @@ export class Vscode {
106
['enableProposedApi', JSON.stringify(options.args['enable-proposed-api'] || [])]
107
],
108
},
109
- homeIndicator: {
110
- href: options.args.home || 'https://github.com/cdr/code-server',
+ homeIndicator: options.args.home ? {
+ href: options.args.home,
111
icon: 'code',
112
title: localize('home', "Home"),
113
- },
+ } : undefined,
114
115
remoteUserDataUri: transformer.transformOutgoing(URI.file(environment.userDataPath)),
116
productConfiguration: product,
0 commit comments