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 cfe33b6 commit 762c63fCopy full SHA for 762c63f
web_src/js/features/repo-code.ts
@@ -50,6 +50,7 @@ function selectRange(range: string): Element {
50
if (!start) return null;
51
const stop = rangeFields[1] || start;
52
53
+ // format is i.e. 'L14-L26'
54
let startLineNum = parseInt(start.substring(1));
55
let stopLineNum = parseInt(stop.substring(1));
56
if (startLineNum > stopLineNum) {
0 commit comments