Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
islyn committed Mar 14, 2024
1 parent 0cf9844 commit 027bfe8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions dest/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -15791,7 +15791,7 @@ async function main() {
messageToPost += '--- \n\n'
if (decreaseStatusLines.length > 0) {
messageToPost +=
`Status | Changes Missing Coverage | ${statusHeader} \n`
`Status | Changes Missing Coverage | ${statusHeader} ---------|------ \n`
messageToPost += decreaseStatusLines.join('\n')
messageToPost += '\n--- \n\n'
}
Expand All @@ -15801,7 +15801,7 @@ async function main() {
messageToPost += '<details>'
messageToPost += '<summary markdown="span">Click to view remaining coverage report</summary>\n\n'
messageToPost +=
`Status | File | ${statusHeader} \n`
`Status | File | ${statusHeader} ---------|------ \n`
messageToPost += remainingStatusLines.join('\n')
messageToPost += '\n';
messageToPost += '</details>';
Expand Down
4 changes: 2 additions & 2 deletions src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ async function main() {
messageToPost += '--- \n\n'
if (decreaseStatusLines.length > 0) {
messageToPost +=
`Status | Changes Missing Coverage | ${statusHeader} \n`
`Status | Changes Missing Coverage | ${statusHeader} ---------|------ \n`
messageToPost += decreaseStatusLines.join('\n')
messageToPost += '\n--- \n\n'
}
Expand All @@ -138,7 +138,7 @@ async function main() {
messageToPost += '<details>'
messageToPost += '<summary markdown="span">Click to view remaining coverage report</summary>\n\n'
messageToPost +=
`Status | File | ${statusHeader} \n`
`Status | File | ${statusHeader} ---------|------ \n`
messageToPost += remainingStatusLines.join('\n')
messageToPost += '\n';
messageToPost += '</details>';
Expand Down

0 comments on commit 027bfe8

Please sign in to comment.