Skip to content

Commit

Permalink
Revert "Signal nightly version in product name"
Browse files Browse the repository at this point in the history
This reverts commit ca90be2.
  • Loading branch information
jeanp413 committed Oct 15, 2021
1 parent 3b8534e commit b9033dd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/vs/gitpod/browser/workbench/workbench.ts
Original file line number Diff line number Diff line change
Expand Up @@ -839,9 +839,9 @@ async function doStart(): Promise<IDisposable> {
urlCallbackProvider: new PollingURLCallbackProvider(),
credentialsProvider,
productConfiguration: {
nameShort: product.nameShort + (info.ideAlias === 'code-latest' ? ' - Insiders' : (info.ideAlias === 'code-nightly' ? ' - Nightly' : '')),
nameLong: product.nameLong + (info.ideAlias === 'code-latest' ? ' - Insiders' : (info.ideAlias === 'code-nightly' ? ' - Nightly' : '')),
version: product.version + (info.ideAlias === 'code-latest' ? '-insider' : (info.ideAlias === 'code-nightly' ? '-nightly' : '')),
nameShort: product.nameShort + (info.ideAlias === 'code-latest' ? ' - Insiders' : ''),
nameLong: product.nameLong + (info.ideAlias === 'code-latest' ? ' - Insiders' : ''),
version: product.version + (info.ideAlias === 'code-latest' ? '-insider' : ''),
linkProtectionTrustedDomains: [
...(product.linkProtectionTrustedDomains || []),
gitpodDomain
Expand Down

0 comments on commit b9033dd

Please sign in to comment.