File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed
src/vs/workbench/contrib/issue/browser Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ import { IOpenerService } from 'vs/platform/opener/common/opener';
11
11
import { IProductService } from 'vs/platform/product/common/productService' ;
12
12
import { IWorkbenchIssueService } from 'vs/workbench/services/issue/common/issue' ;
13
13
import { IssueReporterData } from 'vs/platform/issue/common/issue' ;
14
+ import { userAgent } from 'vs/base/common/platform' ;
14
15
15
16
export class WebIssueService implements IWorkbenchIssueService {
16
17
declare readonly _serviceBrand : undefined ;
@@ -70,7 +71,9 @@ ADD ISSUE DESCRIPTION HERE
70
71
71
72
${ extension ?. manifest . version ? `\nExtension version: ${ extension . manifest . version } ` : '' }
72
73
VS Code version: ${ this . productService . version }
73
- OS version: Web
74
+ VS Code commit: ${ this . productService . commit ?? 'unknown' }
75
+ User Agent: ${ userAgent ?. replace ( ';' , ',' ) ?? 'unknown' }
76
+ Embedder: ${ this . productService . embedderIdentifier ?? 'unknown' }
74
77
<!-- generated by web issue reporter -->` ;
75
78
}
76
79
}
You can’t perform that action at this time.
0 commit comments