We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fd68235 commit 28af0e9Copy full SHA for 28af0e9
extensions/git/src/commands.ts
@@ -91,7 +91,7 @@ class RefItem implements QuickPickItem {
91
92
get detail(): string | undefined {
93
if (this.ref.commitDetails?.authorName && this.ref.commitDetails?.message) {
94
- return `${this.ref.commitDetails?.authorName}$(circle-small-filled)${this.ref.commitDetails?.message}`;
+ return `${this.ref.commitDetails.authorName}$(circle-small-filled)${this.shortCommit}$(circle-small-filled)${this.ref.commitDetails.message}`;
95
}
96
97
return undefined;
0 commit comments