Skip to content

Commit

Permalink
fix: added missing button types and id
Browse files Browse the repository at this point in the history
  • Loading branch information
JCU25 committed Aug 14, 2024
1 parent 8fa012c commit 5d48a53
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/ProjectHighlightRightImg.astro
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ const {
proj_link == "" && (
<header class="modal-header">
<h1 class="modal-header">{title}</h1>
<button class="modal-close">
<button type="button" id={`${id}-modal-close`} class="modal-close">
&times;
</button>
</header>
Expand All @@ -103,7 +103,7 @@ const {
/>
</a>
</div>
<button class="modal-close">
<button type="button" id={`${id}-modal-close`} class="modal-close">
&times;
</button>
</header>
Expand All @@ -124,7 +124,7 @@ const {
/>
</a>
</div>
<button id={`${id}-modal-close`} class="modal-close">
<button type="button" id={`${id}-modal-close`} class="modal-close">
&times;
</button>
</header>
Expand Down

0 comments on commit 5d48a53

Please sign in to comment.