From b399249b7b88dca796d8370efd2b61729ead63ba Mon Sep 17 00:00:00 2001 From: chris48s Date: Tue, 12 Jul 2022 20:58:08 +0100 Subject: [PATCH] add spaces round pipe in [conda] badge --- services/conda/conda-version.service.js | 2 +- services/conda/conda-version.tester.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/services/conda/conda-version.service.js b/services/conda/conda-version.service.js index 486dba8a0d8c8..1cfec3cea0b7a 100644 --- a/services/conda/conda-version.service.js +++ b/services/conda/conda-version.service.js @@ -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), } diff --git a/services/conda/conda-version.tester.js b/services/conda/conda-version.tester.js index 90d9af9f0ad69..e1e644c3b53f5 100644 --- a/services/conda/conda-version.tester.js +++ b/services/conda/conda-version.tester.js @@ -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, })