File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -86,12 +86,12 @@ export class MarkdownGenerator {
8686 markdownTable = this . generatePRTable ( prs , fields )
8787 }
8888 return [
89- '' ,
89+ '\n ' ,
9090 summary ,
91- '' ,
91+ '\n ' ,
9292 markdownTable ,
93- ''
94- ] . join ( '\n ' )
93+ '\n '
94+ ] . join ( '' )
9595 }
9696
9797 private static generatePRTable ( prs : ProcessedPR [ ] , fieldsParam : string ) : string {
Original file line number Diff line number Diff line change @@ -66478,10 +66478,12 @@ var MarkdownGenerator = class _MarkdownGenerator {
6647866478 markdownTable = this.generatePRTable(prs, fields);
6647966479 }
6648066480 return [
66481+ "\n",
6648166482 summary,
66482- "",
66483- markdownTable
66484- ].join("\n");
66483+ "\n",
66484+ markdownTable,
66485+ "\n"
66486+ ].join("");
6648566487 }
6648666488 static generatePRTable(prs, fieldsParam) {
6648766489 const fields = this.parseFields(fieldsParam, this.PRFIELD_CONFIGS);
You can’t perform that action at this time.
0 commit comments