File tree 2 files changed +3
-2
lines changed
2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -203,7 +203,7 @@ <h1>An error has occurred</h1>
203
203
< li > What did you do before this error occurred.</ li >
204
204
< li > The following error message: < code id ="error-code "> </ code > </ li >
205
205
< li >
206
- Your browser and its version: < span id ="browser-details "> </ span >
206
+ Your browser, its version, and your operating system : < span id ="browser-details "> </ span >
207
207
</ li >
208
208
</ ul >
209
209
< button id ="error-close-button "> Close</ button >
Original file line number Diff line number Diff line change @@ -161,7 +161,8 @@ function main(): void {
161
161
addEventListener ( "error" , ( event ) => {
162
162
errorCode . innerText = event . message ;
163
163
const details = new BrowserDetector ( navigator . userAgent ) . getBrowserInfo ( ) ;
164
- browserDetails . innerText = `${ details . name } ${ details . version } ` ;
164
+ browserDetails . innerText =
165
+ `${ details . name } ${ details . version } ${ details . platform } ` ;
165
166
errorBox . showModal ( ) ;
166
167
} ) ;
167
168
You can’t perform that action at this time.
0 commit comments