Skip to content

Commit

Permalink
fix(cc-logs-instances): fix spacing around deployment relative date
Browse files Browse the repository at this point in the history
Use a non-breaking space to handle spacing properly

Fixes #965
  • Loading branch information
pdesoyres-cc committed Apr 11, 2024
1 parent 0bb4d18 commit 7a95572
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/components/cc-logs-instances/cc-logs-instances.js
Expand Up @@ -401,8 +401,7 @@ export class CcLogsInstances extends LitElement {
<legend class="deployment-detail">
<div>${this._renderDeploymentState(deployment.state)}</div>
<div>
${i18n('cc-logs-instances.deployment.deployed')}
<cc-datetime-relative datetime=${deployment.creationDate.toISOString()}></cc-datetime-relative>
${i18n('cc-logs-instances.deployment.deployed')}&nbsp;<cc-datetime-relative datetime=${deployment.creationDate.toISOString()}></cc-datetime-relative>
</div>
${this._renderCommit(deployment.commitId)}
</legend>
Expand Down

0 comments on commit 7a95572

Please sign in to comment.