Fix linting errors

This commit is contained in:
Ramon Wenger 2024-02-26 10:53:18 +01:00
parent 80f299264e
commit 93f180bdd1
1 changed files with 12 additions and 3 deletions

View File

@ -35,10 +35,19 @@
<h2>Activities go here</h2> <h2>Activities go here</h2>
<div v-if="selectedCategory === HIGHLIGHTS"> <div v-if="selectedCategory === HIGHLIGHTS">
<h3>HIGHLIGHTS</h3> <h3>HIGHLIGHTS</h3>
<div v-for="topic in myActivities.topics"> <div
v-for="topic in myActivities.topics"
:key="topic.id"
>
<h4>{{ topic.title }}</h4> <h4>{{ topic.title }}</h4>
<div v-for="module in topic.modules"> <div
<div v-for="highlight in module.allHighlights"> v-for="module in topic.modules"
:key="module.id"
>
<div
v-for="highlight in module.allHighlights"
:key="highlight.id"
>
<mark <mark
class="highlight" class="highlight"
:class="[`highlight--${highlight.color}`]" :class="[`highlight--${highlight.color}`]"