Skip to content
GitLab
Explore
Projects
Groups
Snippets
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Meta
create-react-app
Commits
014fd4d0
Commit
014fd4d0
authored
7 years ago
by
Joe Haddad
Browse files
Options
Download
Email Patches
Plain Diff
Switch to unix path separators before normalizing path for Windows compatibility
parent
b17fa412
1 merge request
!3079
Switch to unix path separators before normalizing path for Windows compatibility
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
packages/react-error-overlay/src/utils/unmapper.js
+1
-1
packages/react-error-overlay/src/utils/unmapper.js
with
1 addition
and
1 deletion
+1
-1
packages/react-error-overlay/src/utils/unmapper.js
+
1
-
1
View file @
014fd4d0
...
...
@@ -56,7 +56,7 @@ async function unmap(
}
let
{
fileName
}
=
frame
;
if
(
fileName
)
{
fileName
=
path
.
normalize
(
fileName
);
fileName
=
path
.
normalize
(
fileName
.
replace
(
/
[\\]
+/g
,
'
/
'
)
);
}
if
(
fileName
==
null
)
{
return
frame
;
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment
Menu
Explore
Projects
Groups
Snippets