Skip to content

Commit 709c9c5

Browse files
author
scinorandex
committed
Fix broken connector lines
1 parent 827feda commit 709c9c5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/utils/generateTable.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ const getPosOfSeparator: (row: string, separator: string) => number[] = (
3939

4040
let charArray = row.split("");
4141
charArray.forEach((char, index) => {
42-
if (char === "") {
42+
if (char === "~") {
4343
response.push(index);
4444
}
4545
});

0 commit comments

Comments
 (0)