Skip to content

Commit

Permalink
fix(self-close): Expand self-closing tag
Browse files Browse the repository at this point in the history
  • Loading branch information
TanguyDucky committed May 11, 2022
1 parent 70f70d7 commit c9c5a52
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -67,9 +67,10 @@ export const AllDirections = (args) => {
.map(
(direction) =>
`<div style="display: flex;">
<p>Item 1</p>
<plmg-separator direction="${direction}"/></div>
<p>Item 2</p>
<p>Item 1</p>
<plmg-separator direction="${direction}"></plmg-separator>
<p>Item 2</p>
</div>
`
)
.join('')
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ describe('plmg-separator', () => {
direction.forEach((directionControl) => {
width.forEach((widthControl) => {
htmlContent += `
<plmg-separator direction="${directionControl}" width="${widthControl}" />
<plmg-separator direction="${directionControl}" width="${widthControl}"></plmg-separator>
<br/>
`;
});
Expand Down

0 comments on commit c9c5a52

Please sign in to comment.