Ver a proveniência

Opens cloud patch on row select (hides icon for now)

main
Ramin Tadayon há 1 ano
ascendente
cometimento
213ca034dc
Não foi encontrada uma chave conhecida para esta assinatura, na base de dados ID da chave GPG: 79D60DDE3DFB95F5
2 ficheiros alterados com 5 adições e 5 eliminações
  1. +0
    -5
      package.json
  2. +5
    -0
      src/views/nodes/draftNode.ts

+ 0
- 5
package.json Ver ficheiro

@ -12000,11 +12000,6 @@
{
"command": "gitlens.views.drafts.open",
"when": "viewItem =~ /gitlens:draft\\b/ && gitlens:plus",
"group": "inline@1"
},
{
"command": "gitlens.views.drafts.open",
"when": "viewItem =~ /gitlens:draft\\b/ && gitlens:plus",
"group": "1_gitlens_actions@1"
},
{

+ 5
- 0
src/views/nodes/draftNode.ts Ver ficheiro

@ -55,6 +55,11 @@ export class DraftNode extends ViewNode<'draft', DraftsView> {
}`,
);
item.description = fromNow(this.draft.updatedAt);
item.command = {
title: 'Show Patch',
command: this.view.getQualifiedCommand('open'),
arguments: [this],
};
return item;
}
}

Carregando…
Cancelar
Guardar