Fix linting issues
This commit is contained in:
parent
6a4f795801
commit
d0633823bf
|
|
@ -2,7 +2,8 @@
|
||||||
<div>
|
<div>
|
||||||
<p class="text-gray-800 mb-4">Schritt {{ stepNo + 1 }} von {{ MAX_STEPS }}</p>
|
<p class="text-gray-800 mb-4">Schritt {{ stepNo + 1 }} von {{ MAX_STEPS }}</p>
|
||||||
<p class="mb-10 text-xl">
|
<p class="mb-10 text-xl">
|
||||||
Patrizia Huggel, deine Trainerin, bittet dich, ihr Feedback zu geben. <br />
|
Patrizia Huggel, deine Trainerin, bittet dich, ihr Feedback zu geben.
|
||||||
|
<br />
|
||||||
Das ist freiwillig, würde ihr aber helfen, dein Lernerlebnis zu verbessern.
|
Das ist freiwillig, würde ihr aber helfen, dein Lernerlebnis zu verbessern.
|
||||||
</p>
|
</p>
|
||||||
<ItRadioGroup
|
<ItRadioGroup
|
||||||
|
|
|
||||||
|
|
@ -7,8 +7,7 @@
|
||||||
frameborder="0"
|
frameborder="0"
|
||||||
allow="accelerometer; encrypted-media; gyroscope; picture-in-picture"
|
allow="accelerometer; encrypted-media; gyroscope; picture-in-picture"
|
||||||
allowfullscreen
|
allowfullscreen
|
||||||
>
|
></iframe>
|
||||||
</iframe>
|
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -4,9 +4,9 @@
|
||||||
class="border p-12"
|
class="border p-12"
|
||||||
@update:modelValue="$emit('update:modelValue', $event)"
|
@update:modelValue="$emit('update:modelValue', $event)"
|
||||||
>
|
>
|
||||||
<RadioGroupLabel class="text-5xl mb-12 leading-normal font-bold block">{{
|
<RadioGroupLabel class="text-5xl mb-12 leading-normal font-bold block">
|
||||||
label
|
{{ label }}
|
||||||
}}</RadioGroupLabel>
|
</RadioGroupLabel>
|
||||||
<div class="flex justify-between align-items-center justify-items-center space-x-6">
|
<div class="flex justify-between align-items-center justify-items-center space-x-6">
|
||||||
<RadioGroupOption
|
<RadioGroupOption
|
||||||
v-for="item in items"
|
v-for="item in items"
|
||||||
|
|
|
||||||
|
|
@ -27,7 +27,7 @@ function loadCourseSessionsData(reload = false) {
|
||||||
return { courseSessions };
|
return { courseSessions };
|
||||||
}
|
}
|
||||||
|
|
||||||
export const useCourseSessionsStore = defineStore("courseSessionsSetup", () => {
|
export const useCourseSessionsStore = defineStore("courseSessions", () => {
|
||||||
// using setup function seems cleaner, see https://pinia.vuejs.org/core-concepts/#setup-stores
|
// using setup function seems cleaner, see https://pinia.vuejs.org/core-concepts/#setup-stores
|
||||||
|
|
||||||
// this will become a state variable (like each other `ref()`
|
// this will become a state variable (like each other `ref()`
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue