瀏覽代碼

Fixes ellipsis showing up for all commit messages

main
Eric Amodio 2 年之前
父節點
當前提交
4f86506aac
共有 1 個檔案被更改,包括 1 行新增1 行删除
  1. +1
    -1
      src/git/models/commit.ts

+ 1
- 1
src/git/models/commit.ts 查看文件

@ -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…
取消
儲存