Browse Source

Fixes ellipsis showing up for all commit messages

main
Eric Amodio 2 years ago
parent
commit
4f86506aac
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/git/models/commit.ts

+ 1
- 1
src/git/models/commit.ts View File

@ -71,7 +71,7 @@ export class GitCommit implements GitRevisionReference {
// Add an ellipsis to the summary if there is or might be more message
if (message != null) {
this._message = message;
if (this.summary !== message) {
if (summary !== message) {
this._summary = `${summary} ${GlyphChars.Ellipsis}`;
} else {
this._summary = summary;

Loading…
Cancel
Save