Skip to content

Commit 29f3021

Browse files
authored
Merge pull request #2800 from cdr/no-default-home
2 parents 726f694 + 9da9ff2 commit 29f3021

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

.ignore

-1
This file was deleted.

lib/vscode/src/vs/server/node/server.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -106,11 +106,11 @@ export class Vscode {
106106
['enableProposedApi', JSON.stringify(options.args['enable-proposed-api'] || [])]
107107
],
108108
},
109-
homeIndicator: {
110-
href: options.args.home || 'https://github.com/cdr/code-server',
109+
homeIndicator: options.args.home ? {
110+
href: options.args.home,
111111
icon: 'code',
112112
title: localize('home', "Home"),
113-
},
113+
} : undefined,
114114
},
115115
remoteUserDataUri: transformer.transformOutgoing(URI.file(environment.userDataPath)),
116116
productConfiguration: product,

0 commit comments

Comments
 (0)