Browse Source

fix(debug) enable webview debugging (#14623)

factor2
Mihaela Dumitru 1 year ago
parent
commit
e3ee99754c
No account linked to committer's email address

+ 2
- 1
react/features/etherpad/components/native/SharedDocument.tsx View File

@@ -60,7 +60,8 @@ class SharedDocument extends PureComponent<IProps> {
60 60
                     renderLoading = { this._renderLoading }
61 61
                     source = {{ uri: _documentUrl ?? '' }}
62 62
                     startInLoadingState = { true }
63
-                    style = { styles.sharedDoc } />
63
+                    style = { styles.sharedDoc }
64
+                    webviewDebuggingEnabled = { true } />
64 65
             </JitsiScreen>
65 66
         );
66 67
     }

+ 2
- 1
react/features/invite/components/dial-in-summary/native/DialInSummary.tsx View File

@@ -83,7 +83,8 @@ class DialInSummary extends PureComponent<IProps> {
83 83
                     setSupportMultipleWindows = { false }
84 84
                     source = {{ uri: getDialInfoPageURLForURIString(summaryUrl) ?? '' }}
85 85
                     startInLoadingState = { true }
86
-                    style = { styles.webView } />
86
+                    style = { styles.webView }
87
+                    webviewDebuggingEnabled = { true } />
87 88
             </JitsiScreen>
88 89
         );
89 90
     }

+ 2
- 1
react/features/whiteboard/components/native/Whiteboard.tsx View File

@@ -140,7 +140,8 @@ class Whiteboard extends PureComponent<IProps> {
140 140
                     setSupportMultipleWindows = { false }
141 141
                     source = {{ uri }}
142 142
                     startInLoadingState = { true }
143
-                    style = { styles.webView } />
143
+                    style = { styles.webView }
144
+                    webviewDebuggingEnabled = { true } />
144 145
             </JitsiScreen>
145 146
         );
146 147
     }

Loading…
Cancel
Save