Skip to content

Commit c747b9c

Browse files
committed
fix: StartTag: invalid element name 오류 해결
1 parent 2431eb6 commit c747b9c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/cards/new-log-black.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ const createCardBody = ({title, short_description}) => {
2121
<svg data-testid="lang-items" x="25" width="400" height="40" viewBox="0 0 400 40">
2222
<g transform="translate(0, 0)">
2323
<text data-testid="lang-name" x="2" y="15" class="log-title">${title}</text>
24-
<text ata-testid="lang-description" x="2" y="35" class="log-description">${short_description}</text>
24+
<text ata-testid="lang-description" x="2" y="35" class="log-description">${short_description.replaceAll("`", "\`")}</text>
2525
</g>
2626
</svg>
2727
</g>

src/cards/new-log.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ const createCardBody = ({title, short_description}) => {
2121
<svg data-testid="lang-items" x="25" width="400" height="40" viewBox="0 0 400 40">
2222
<g transform="translate(0, 0)">
2323
<text data-testid="lang-name" x="2" y="15" class="log-title">${title}</text>
24-
<text ata-testid="lang-description" x="2" y="35" class="log-description">${short_description}</text>
24+
<text ata-testid="lang-description" x="2" y="35" class="log-description">${short_description.replaceAll("`", "\`")}</text>
2525
</g>
2626
</svg>
2727
</g>

0 commit comments

Comments
 (0)