Skip to content

Commit

Permalink
dix build
Browse files Browse the repository at this point in the history
  • Loading branch information
JesmoDev committed Mar 3, 2024
1 parent b772027 commit e9cb7a3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@
<script type="module" src="/src/my-element.ts"></script>
</head>
<body>
<my-element> </my-element>
<my-element></my-element>
</body>
</html>
2 changes: 1 addition & 1 deletion src/my-element.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ export class MyElement extends LitElement {
${repeat(
this.testBlogs,
(blog) => blog.title,
(blog, index) => html`
(blog) => html`
<div class="card">
<h2>${blog.title}</h2>
<p>${blog.content}</p>
Expand Down

0 comments on commit e9cb7a3

Please sign in to comment.