Explorar el Código

Fixes ellipsis showing up for all commit messages

main
Eric Amodio hace 2 años
padre
commit
4f86506aac
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      src/git/models/commit.ts

+ 1
- 1
src/git/models/commit.ts Ver fichero

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

Cargando…
Cancelar
Guardar