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 80ee8fa commit 72659a1Copy full SHA for 72659a1
src/server/code-parse/language/default/codecrumbs.js
@@ -60,6 +60,7 @@ const setupGetCommentsFromCode = regex => fileCode => {
60
const result = compact(regex.exec(fileCode)) || [];
61
62
return result.reduce((comments, value) => {
63
+ value = value.trim()
64
const index = fileCode.indexOf(value);
65
const tempString = fileCode.substring(0, index);
66
const matchLineNumber = tempString.split('\n').length;
0 commit comments