Skip to content

Commit

Permalink
Merge pull request #13 from eungyeole/develop
Browse files Browse the repository at this point in the history
fix: StartTag: invalid element name 오류 해결
  • Loading branch information
eungyeole authored Jun 23, 2021
2 parents 24279f2 + ef66ee5 commit 02e5146
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/cards/new-log-black.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ const createCardBody = ({title, short_description}) => {
<svg data-testid="lang-items" x="25" width="400" height="40" viewBox="0 0 400 40">
<g transform="translate(0, 0)">
<text data-testid="lang-name" x="2" y="15" class="log-title">${title}</text>
<text ata-testid="lang-description" x="2" y="35" class="log-description">${short_description}</text>
<text ata-testid="lang-description" x="2" y="35" class="log-description">${replaceAll(short_description, '<', '&lt;')}</text>
</g>
</svg>
</g>
Expand Down
2 changes: 1 addition & 1 deletion src/cards/new-log.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ const createCardBody = ({title, short_description}) => {
<svg data-testid="lang-items" x="25" width="400" height="40" viewBox="0 0 400 40">
<g transform="translate(0, 0)">
<text data-testid="lang-name" x="2" y="15" class="log-title">${title}</text>
<text ata-testid="lang-description" x="2" y="35" class="log-description">${short_description}</text>
<text ata-testid="lang-description" x="2" y="35" class="log-description">${replaceAll(short_description, '<', '&lt;')}</text>
</g>
</svg>
</g>
Expand Down

0 comments on commit 02e5146

Please sign in to comment.