mirror of
https://github.com/ckaczor/vscode-gitlens.git
synced 2026-01-18 17:25:54 -05:00
Changes stash icons
Moves stash number from label to description
This commit is contained in:
@@ -170,9 +170,9 @@ export class CommitQuickPickItem implements QuickPickItem {
|
||||
}
|
||||
|
||||
if (commit instanceof GitStashCommit) {
|
||||
this.label = `${commit.stashName}\u00a0\u2022\u00a0${message}`;
|
||||
this.label = message;
|
||||
this.description = '';
|
||||
this.detail = `\u00a0 ${moment(commit.date).fromNow()}\u00a0\u00a0\u2022\u00a0 ${commit.getDiffStatus()}`;
|
||||
this.detail = `\u00a0 ${commit.stashName}\u00a0\u00a0\u2022\u00a0 ${moment(commit.date).fromNow()}\u00a0\u00a0\u2022\u00a0 ${commit.getDiffStatus()}`;
|
||||
}
|
||||
else {
|
||||
this.label = message;
|
||||
|
||||
Reference in New Issue
Block a user