Parcourir la source

Fixes diffWith when called with no previous sha

main
Eric Amodio il y a 7 ans
Parent
révision
88421c586d
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. +1
    -1
      src/commands/diffWith.ts

+ 1
- 1
src/commands/diffWith.ts Voir le fichier

@ -48,7 +48,7 @@ export class DiffWithCommand extends ActiveEditorCommand {
args = {
repoPath: commit1.repoPath,
lhs: {
sha: commit1.previousSha!,
sha: commit1.previousSha !== undefined ? commit1.previousSha : GitService.fakeSha,
uri: commit1.previousUri!
},
rhs: {

Chargement…
Annuler
Enregistrer