Skip to content

Commit

Permalink
add spaces round pipe in [conda] badge (#8189)
Browse files Browse the repository at this point in the history
Co-authored-by: repo-ranger[bot] <39074581+repo-ranger[bot]@users.noreply.github.com>
  • Loading branch information
chris48s and repo-ranger[bot] authored Jul 12, 2022
1 parent 7cfd3f5 commit 6a77a59
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion services/conda/conda-version.service.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export default class CondaVersion extends BaseCondaService {

static render({ variant, channel, version }) {
return {
label: variant === 'vn' ? channel : `conda|${channel}`,
label: variant === 'vn' ? channel : `conda | ${channel}`,
message: versionText(version),
color: versionColor(version),
}
Expand Down
2 changes: 1 addition & 1 deletion services/conda/conda-version.tester.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { createServiceTester } from '../tester.js'
export const t = await createServiceTester()

t.create('version').get('/v/conda-forge/zlib.json').expectBadge({
label: 'conda|conda-forge',
label: 'conda | conda-forge',
message: isVPlusTripleDottedVersion,
})

Expand Down

0 comments on commit 6a77a59

Please sign in to comment.