You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* add launch id to termination screen
* add devtools disconnected reasons
* allow displaying custom errors to the user for when devtools is disconnected
Copy file name to clipboardExpand all lines: front_end/ui/legacy/components/utils/TargetDetachedDialog.ts
+32-2Lines changed: 32 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -13,7 +13,21 @@ const UIStrings = {
13
13
*@description Text on the remote debugging window to indicate the connection is lost
14
14
*/
15
15
websocketDisconnected: 'WebSocket disconnected',
16
+
/**
17
+
*@description Text on the remote debugging window to indicate the connection cannot be made because the device is not connected
18
+
*/
19
+
websocketDisconnectedUnregisteredDevice: 'The corresponding app for this DevTools session cannot be found. Please relaunch DevTools from the terminal.',
20
+
/**
21
+
*@description Text on the remote debugging window to indicate the connection to corresponding device was lost
22
+
*/
23
+
websocketDisconnectedConnectionLost: 'Connection lost to corresponding device'
0 commit comments