Skip to content

Commit

Permalink
Fixes broken spacing
Browse files Browse the repository at this point in the history
  • Loading branch information
eamodio committed Feb 19, 2021
1 parent c7562ff commit 96bee13
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/git/formatters/commitFormatter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -344,9 +344,9 @@ export class CommitFormatter extends Formatter<GitCommit, CommitFormatOptions> {
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
Expand Down

0 comments on commit 96bee13

Please sign in to comment.