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
...@@ -337,6 +337,7 @@ ...@@ -337,6 +337,7 @@
<translate>Niveau</translate><br /> <translate>Niveau</translate><br />
<translate>von</translate> <translate>von</translate>
<select v-model="currentElement.attributes.payload.difficulty_start"> <select v-model="currentElement.attributes.payload.difficulty_start">
<option value="">-</option>
<option <option
v-for="difficulty_start in 12" v-for="difficulty_start in 12"
:key="difficulty_start" :key="difficulty_start"
...@@ -347,6 +348,7 @@ ...@@ -347,6 +348,7 @@
</select> </select>
<translate>bis</translate> <translate>bis</translate>
<select v-model="currentElement.attributes.payload.difficulty_end"> <select v-model="currentElement.attributes.payload.difficulty_end">
<option value="">-</option>
<option <option
v-for="difficulty_end in 12" v-for="difficulty_end in 12"
:key="difficulty_end" :key="difficulty_end"
......
...@@ -131,12 +131,14 @@ ...@@ -131,12 +131,14 @@
{{ $gettext('Niveau') }}<br /> {{ $gettext('Niveau') }}<br />
{{ $gettext('von') }} {{ $gettext('von') }}
<select v-model="difficulty_start"> <select v-model="difficulty_start">
<option value="">-</option>
<option v-for="difficulty_start in 12" :key="difficulty_start" :value="difficulty_start"> <option v-for="difficulty_start in 12" :key="difficulty_start" :value="difficulty_start">
{{ difficulty_start }} {{ difficulty_start }}
</option> </option>
</select> </select>
{{ $gettext('bis') }} {{ $gettext('bis') }}
<select v-model="difficulty_end"> <select v-model="difficulty_end">
<option value="">-</option>
<option v-for="difficulty_end in 12" :key="difficulty_end" :value="difficulty_end"> <option v-for="difficulty_end in 12" :key="difficulty_end" :value="difficulty_end">
{{ difficulty_end }} {{ difficulty_end }}
</option> </option>
......
...@@ -118,6 +118,7 @@ ...@@ -118,6 +118,7 @@
{{ $gettext('Niveau') }}<br /> {{ $gettext('Niveau') }}<br />
{{ $gettext('von') }} {{ $gettext('von') }}
<select v-model="addWizardData.difficulty_start"> <select v-model="addWizardData.difficulty_start">
<option value="">-</option>
<option <option
v-for="difficulty_start in 12" v-for="difficulty_start in 12"
:key="difficulty_start" :key="difficulty_start"
...@@ -128,6 +129,7 @@ ...@@ -128,6 +129,7 @@
</select> </select>
{{ $gettext('bis') }} {{ $gettext('bis') }}
<select v-model="addWizardData.difficulty_end"> <select v-model="addWizardData.difficulty_end">
<option value="">-</option>
<option <option
v-for="difficulty_end in 12" v-for="difficulty_end in 12"
:key="difficulty_end" :key="difficulty_end"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment