Skip to content

Commit

Permalink
fix(domain): add missing spacing within diag report
Browse files Browse the repository at this point in the history
  • Loading branch information
florian-sanders-cc committed Nov 5, 2024
1 parent 58032c8 commit 7b0c739
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/commands/domain.js
Original file line number Diff line number Diff line change
Expand Up @@ -337,7 +337,7 @@ function reportDomainDiagnostics ({ hostname, pathPrefix, resolvedDnsConfig, dia

unknownDiags.forEach((diag) => {
const source = hasCnameRecord ? `(from CNAME ${resolvedDnsConfig.cnameRecords[0]}.)` : '';
printlnWithIndent(diag.record.value + source, 6);
printlnWithIndent(`${diag.record.value} ${source}`, 6);
});
}

Expand Down

0 comments on commit 7b0c739

Please sign in to comment.