Skip to content
Snippets Groups Projects
Commit 6dc27317 authored by Ron Lucke's avatar Ron Lucke
Browse files

fix #4315

Closes #4315

Merge request studip/studip!3173
parent 8ef53359
No related branches found
No related tags found
No related merge requests found
Pipeline #25017 passed
......@@ -337,6 +337,7 @@
<translate>Niveau</translate><br />
<translate>von</translate>
<select v-model="currentElement.attributes.payload.difficulty_start">
<option value="">-</option>
<option
v-for="difficulty_start in 12"
:key="difficulty_start"
......@@ -347,6 +348,7 @@
</select>
<translate>bis</translate>
<select v-model="currentElement.attributes.payload.difficulty_end">
<option value="">-</option>
<option
v-for="difficulty_end in 12"
:key="difficulty_end"
......
......@@ -131,12 +131,14 @@
{{ $gettext('Niveau') }}<br />
{{ $gettext('von') }}
<select v-model="difficulty_start">
<option value="">-</option>
<option v-for="difficulty_start in 12" :key="difficulty_start" :value="difficulty_start">
{{ difficulty_start }}
</option>
</select>
{{ $gettext('bis') }}
<select v-model="difficulty_end">
<option value="">-</option>
<option v-for="difficulty_end in 12" :key="difficulty_end" :value="difficulty_end">
{{ difficulty_end }}
</option>
......
......@@ -118,6 +118,7 @@
{{ $gettext('Niveau') }}<br />
{{ $gettext('von') }}
<select v-model="addWizardData.difficulty_start">
<option value="">-</option>
<option
v-for="difficulty_start in 12"
:key="difficulty_start"
......@@ -128,6 +129,7 @@
</select>
{{ $gettext('bis') }}
<select v-model="addWizardData.difficulty_end">
<option value="">-</option>
<option
v-for="difficulty_end in 12"
:key="difficulty_end"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment