Quellcode durchsuchen

Fixes ellipsis showing up for all commit messages

main
Eric Amodio vor 2 Jahren
Ursprung
Commit
4f86506aac
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen
  1. +1
    -1
      src/git/models/commit.ts

+ 1
- 1
src/git/models/commit.ts Datei anzeigen

@ -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;

Laden…
Abbrechen
Speichern