浏览代码

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;

正在加载...
取消
保存