Fix linting errors
This commit is contained in:
parent
80f299264e
commit
93f180bdd1
|
|
@ -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}`]"
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue