Skip to content
Snippets Groups Projects
Commit 1dc91a23 authored by Ron Lucke's avatar Ron Lucke Committed by Marcus Eibrink-Lunzenauer
Browse files

fixes #290

parent 6f037035
No related branches found
No related tags found
No related merge requests found
......@@ -6,8 +6,8 @@
<label>
<span><translate>Art der Kapitelabfolge</translate></span>
<select class="size-s" v-model="currentProgression">
<option value="false"><translate>Frei</translate></option>
<option value="true"><translate>Sequentiell</translate></option>
<option value="0"><translate>Frei</translate></option>
<option value="1"><translate>Sequentiell</translate></option>
</select>
</label>
......@@ -47,7 +47,7 @@ export default {
}),
initData() {
this.currentPermissionLevel = this.courseware.attributes['editing-permission-level'];
this.currentProgression = this.courseware.attributes['sequential-progression'];
this.currentProgression = this.courseware.attributes['sequential-progression'] ? '1' : '0';
},
store() {
this.companionSuccess({
......
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