We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d290875 commit 7fccd6bCopy full SHA for 7fccd6b
packages/react-devtools-extensions/src/main/index.js
@@ -711,6 +711,12 @@ if (chrome.devtools.panels.setOpenResourceHandler) {
711
resource.url,
712
lineNumber - 1,
713
columnNumber - 1,
714
+ maybeError => {
715
+ if (maybeError && maybeError.isError) {
716
+ // Not a resource Chrome can open. Fallback to browser default behavior.
717
+ window.open(resource.url);
718
+ }
719
+ },
720
);
721
},
722
0 commit comments