Skip to content

Commit

Permalink
fix: <a> insert space
Browse files Browse the repository at this point in the history
  • Loading branch information
MaikoTan authored Mar 26, 2024
1 parent b70f632 commit 541902f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ export class Messager {
const url = attrs['href'] as string
await this.render(children)
if (url) {
this.children.push(r.text(`( ${url} )`))
this.children.push(r.text(` ( ${url} )`))
}
this.isEndLine = false

Check warning on line 139 in packages/engine-chronocat-api/src/api/message/create/messager.ts

View check run for this annotation

Codecov / codecov/patch

packages/engine-chronocat-api/src/api/message/create/messager.ts#L133-L139

Added lines #L133 - L139 were not covered by tests
return
Expand Down

0 comments on commit 541902f

Please sign in to comment.