We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 827e018 commit 440d41bCopy full SHA for 440d41b
1 file changed
src/gren.js
@@ -397,7 +397,7 @@ function templateChangelog(blocks) {
397
* @return {string}
398
*/
399
function templateIssueBody(body, rangeBody) {
400
- return body.length ? body.join('\n') || rangeBody + '\n' : '*No changelog for this release.*';
+ return (body ? body.join('\n') : rangeBody || '*No changelog for this release.*') + '\n';
401
}
402
403
/**
0 commit comments