Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3b9f8e7 commit 8dc7f63Copy full SHA for 8dc7f63
1 file changed
src/projects/models.ts
@@ -57,9 +57,10 @@ export class Project {
57
// find separator line
58
let sepLineIdx = null;
59
for (let [idx, lineString] of linesString.entries()) {
60
- if (lineString.startsWith("---"))
+ if (lineString.startsWith("---")) {
61
sepLineIdx = idx;
62
break;
63
+ }
64
}
65
// process containers lines
66
if (sepLineIdx === null)
0 commit comments