Browse Source

Fixes broken spacing

main
Eric Amodio 3 years ago
parent
commit
96bee13cc9
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      src/git/formatters/commitFormatter.ts

+ 2
- 2
src/git/formatters/commitFormatter.ts View File

@ -344,9 +344,9 @@ export class CommitFormatter extends Formatter {
pr.state
}, ${pr.formatDateFromNow()}")`;
} else if (pr instanceof Promises.CancellationError) {
commands += `[$(git-pull-request) PR $(loading~spin)](command:${Commands.RefreshHover} "Searching for a Pull Request (if any) that introduced this commit...")`;
commands += `${separator}[$(git-pull-request) PR $(loading~spin)](command:${Commands.RefreshHover} "Searching for a Pull Request (if any) that introduced this commit...")`;
} else if (pr.provider != null && Container.config.integrations.enabled) {
commands += `[$(plug) Connect to ${pr.provider.name}${
commands += `${separator}[$(plug) Connect to ${pr.provider.name}${
GlyphChars.Ellipsis
}](${ConnectRemoteProviderCommand.getMarkdownCommandArgs(pr)} "Connect to ${
pr.provider.name

Loading…
Cancel
Save