File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
src/vs/workbench/browser/parts/dialogs Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -144,11 +144,12 @@ export class BrowserDialogHandler implements IDialogHandler {
144
144
async about ( ) : Promise < void > {
145
145
const detailString = ( useAgo : boolean ) : string => {
146
146
return localize ( 'aboutDetail' ,
147
- "Version: {0}\nCommit: {1}\nDate: {2}\nBrowser: {3}" ,
147
+ "code-server: v{4}\n VS Code: v {0}\nCommit: {1}\nDate: {2}\nBrowser: {3}" ,
148
148
this . productService . version || 'Unknown' ,
149
149
this . productService . commit || 'Unknown' ,
150
150
this . productService . date ? `${ this . productService . date } ${ useAgo ? ' (' + fromNow ( new Date ( this . productService . date ) , true ) + ')' : '' } ` : 'Unknown' ,
151
- navigator . userAgent
151
+ navigator . userAgent ,
152
+ this . productService . codeServerVersion || 'Unknown' ,
152
153
) ;
153
154
} ;
154
155
You can’t perform that action at this time.
0 commit comments