Browse Source

Removes extra line from tooltip

main
Eric Amodio 4 years ago
parent
commit
016d1ee08e
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/views/commitsView.ts

+ 1
- 1
src/views/commitsView.ts View File

@ -116,7 +116,7 @@ export class CommitsRepositoryNode extends RepositoryFolderNode
empty: `up to date with ${branch.tracking}${providerName ? ` on ${providerName}` : ''}`,
expand: true,
separator: ', ',
suffix: ` ${branch.tracking}${providerName ? ` on ${providerName}` : ''}\n`,
suffix: ` ${branch.tracking}${providerName ? ` on ${providerName}` : ''}`,
})}`
: `hasn't been published to ${providerName ?? 'a remote'}`
}`;

Loading…
Cancel
Save