Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 8dc7f63

Browse files
committed
Containers loop fix
1 parent 3b9f8e7 commit 8dc7f63

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/projects/models.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,9 +57,10 @@ export class Project {
5757
// find separator line
5858
let sepLineIdx = null;
5959
for (let [idx, lineString] of linesString.entries()) {
60-
if (lineString.startsWith("---"))
60+
if (lineString.startsWith("---")) {
6161
sepLineIdx = idx;
6262
break;
63+
}
6364
}
6465
// process containers lines
6566
if (sepLineIdx === null)

0 commit comments

Comments
 (0)