Skip to content

Commit ef66ee5

Browse files
committed
fix: StartTag: invalid element name 오류 해결2
1 parent d345901 commit ef66ee5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
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">${replaceAll(short_description, '`', '\`')}</text>
24+
<text ata-testid="lang-description" x="2" y="35" class="log-description">${replaceAll(short_description, '<', '&lt;')}</text>
2525
</g>
2626
</svg>
2727
</g>

0 commit comments

Comments
 (0)