Skip to content

Commit

Permalink
Fix syntax highlighting
Browse files Browse the repository at this point in the history
  • Loading branch information
ColdHeat committed Jan 31, 2025
1 parent 26bf943 commit 7c25d89
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions templates/challenges.html
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@ <h3 x-text="category"></h3>
<button
class="challenge-button btn btn-dark w-100 h-100"
:class="[
c.solved_by_me ? "challenge-solved" : "",
...c.tags.map((tag) => `tag-${tag.value.replace(/ /g, "-")}`),
c.solved_by_me ? 'challenge-solved' : '',
...c.tags.map((tag) => `tag-${tag.value.replace(/ /g, '-')}`),
];"
:value="c.id" @click="loadChallenge(c.id)"
>
Expand Down

0 comments on commit 7c25d89

Please sign in to comment.