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 2384c4c commit b655939Copy full SHA for b655939
src/diagnosticTool/breakpointHelper.tsx
@@ -168,7 +168,9 @@ const Breakpoint: FunctionComponent<{ bp: IDiagnosticBreakpoint }> = ({ bp }) =>
168
const FailedToSetLocation: FunctionComponent<{ bp: IDiagnosticBreakpoint }> = ({ bp }) => {
169
const dump = useDump();
170
const desiredBasename = basename({ url: bp.source.path as string });
171
- const matchingSources = dump.sources.filter(src => basename(src) === desiredBasename);
+ const matchingSources = dump.sources.filter(
172
+ src => basename(src).toLowerCase() === desiredBasename.toLowerCase(),
173
+ );
174
175
if (!matchingSources.length) {
176
return (
0 commit comments