Browse Source

Removes sha from tag node description

main
Eric Amodio 4 years ago
parent
commit
bc58f2aa3e
1 changed files with 1 additions and 5 deletions
  1. +1
    -5
      src/views/nodes/tagNode.ts

+ 1
- 5
src/views/nodes/tagNode.ts View File

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

Loading…
Cancel
Save