Skip to content

Commit a7a5181

Browse files
authored
fix(migrate): resolve [object Object] issue in migration script and regenerate progress (#67)
1 parent 22a7de1 commit a7a5181

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

migrate/update-migrate-progress.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ function generateMarkdown(status: EntryStatus): string {
5151
} else {
5252
return `| ❌ | [cppref](${cpprefUrl}) | ${
5353
entry.cppdoc ? `[create](${issueUrl})` : "N/A"
54-
} | \`${entry}\` |`;
54+
} | \`${entry.cppdoc ?? entry.cppref + "(cppref)"}\` |`;
5555
}
5656
}
5757

0 commit comments

Comments
 (0)