Ver a proveniência

Fixes rogue comma

main
Eric Amodio há 4 anos
ascendente
cometimento
9e84226101
1 ficheiros alterados com 4 adições e 2 eliminações
  1. +4
    -2
      src/commands/quickCommand.steps.ts

+ 4
- 2
src/commands/quickCommand.steps.ts Ver ficheiro

@ -1782,9 +1782,11 @@ function getShowRepositoryStatusStepItems<
} else {
workingTreeStatus = `$(files) ${
computed.staged ? `${Strings.pluralize('staged file', computed.staged)} (${computed.stagedStatus})` : ''
}, ${
}${
computed.unstaged
? `${Strings.pluralize('unstaged file', computed.unstaged)} (${computed.unstagedStatus})`
? `${computed.staged ? ', ' : ''}${Strings.pluralize('unstaged file', computed.unstaged)} (${
computed.unstagedStatus
})`
: ''
}`;
}

Carregando…
Cancelar
Guardar