Просмотр исходного кода

Removes sha from tag node description

main
Eric Amodio 4 лет назад
Родитель
Сommit
bc58f2aa3e
1 измененных файлов: 1 добавлений и 5 удалений
  1. +1
    -5
      src/views/nodes/tagNode.ts

+ 1
- 5
src/views/nodes/tagNode.ts Просмотреть файл

@ -66,11 +66,7 @@ export class TagNode extends ViewRefNode
const item = new TreeItem(this.label, TreeItemCollapsibleState.Collapsed);
item.id = this.id;
item.contextValue = ContextValues.Tag;
item.description = `${GitRevision.shorten(this.tag.sha, { force: true })}${Strings.pad(
GlyphChars.Dot,
2,
2,
)}${emojify(this.tag.message)}`;
item.description = emojify(this.tag.message);
item.tooltip = `${this.tag.name}${Strings.pad(GlyphChars.Dash, 2, 2)}${GitRevision.shorten(this.tag.sha, {
force: true,
})}\n${this.tag.formatDateFromNow()} (${this.tag.formatDate(TagDateFormatting.dateFormat)})\n\n${emojify(

Загрузка…
Отмена
Сохранить