Skip to content

Commit

Permalink
Merge pull request #56 from qdequippe/remove-line-break
Browse files Browse the repository at this point in the history
Remove line break
  • Loading branch information
cakeinpanic authored Oct 28, 2024
2 parents c8d2a80 + eae5a2c commit f24c121
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion __tests__/utils.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,6 @@ describe('buildPRDescription()', () => {
expect(buildPRDescription(details)).toEqual(`<table><tbody><tr><td>
<a href="example.com/ABC-123" title="ABC-123" target="_blank"><img alt="story" src="icon.png" /> ABC-123</a>
Sample summary
</td></tr></tbody></table><br />`);
</td></tr></tbody></table>`);
});
});
2 changes: 1 addition & 1 deletion src/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -76,5 +76,5 @@ export const buildPRDescription = (details: JIRADetails) => {
return `<table><tbody><tr><td>
<a href="${details.url}" title="${displayKey}" target="_blank"><img alt="${details.type.name}" src="${details.type.icon}" /> ${displayKey}</a>
${details.summary}
</td></tr></tbody></table><br />`;
</td></tr></tbody></table>`;
};

0 comments on commit f24c121

Please sign in to comment.