Skip to content

Commit

Permalink
Merge pull request gitkraken#50 from mfikria/tc-dev-fix-missing-last-…
Browse files Browse the repository at this point in the history
…letters

Fix missing last letter gitkraken#48
  • Loading branch information
billsedison authored Oct 21, 2018
2 parents bb9f391 + 77a29bd commit 754fe4c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/git/parsers/logParser.ts
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ export class GitLogParser {

if (entry.summary !== undefined) {
// Remove the trailing newline
entry.summary = entry.summary.slice(0, -1);
entry.summary = entry.summary.replace(/\n/g,' ');
}
break;

Expand Down

0 comments on commit 754fe4c

Please sign in to comment.