Commit 9e733b57 authored by Dan Abramov's avatar Dan Abramov
Browse files

Internal Webpack paths should not be clickable

parent 172264ef
3 merge requests!12191Lim.Pisey.168:/Identified - We are currently investigating reports of missing build logs. The issue has been identified and a resolution is in progress. We will provide a further update when available.Mar 21, 09:02 UTC,!12853brikk,!5717Automatically extract project file structure from build bundle file
Showing with 14 additions and 8 deletions
+14 -8
...@@ -267,14 +267,20 @@ function createFrame( ...@@ -267,14 +267,20 @@ function createFrame(
let onSourceClick = null; let onSourceClick = null;
if (sourceFileName) { if (sourceFileName) {
onSourceClick = () => { // e.g. "/path-to-my-app/webpack/bootstrap eaddeb46b67d75e4dfc1"
fetch( const isInternalWebpackBootstrapCode = sourceFileName
'/__open-stack-frame-in-editor?fileName=' + .trim()
window.encodeURIComponent(sourceFileName) + .indexOf(' ') !== -1;
'&lineNumber=' + if (!isInternalWebpackBootstrapCode) {
window.encodeURIComponent(sourceLineNumber || 1) onSourceClick = () => {
).then(() => {}, () => {}); fetch(
}; '/__open-stack-frame-in-editor?fileName=' +
window.encodeURIComponent(sourceFileName) +
'&lineNumber=' +
window.encodeURIComponent(sourceLineNumber || 1)
).then(() => {}, () => {});
};
}
} }
const elem = frameDiv( const elem = frameDiv(
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment