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

Beschreibung des Lernmaterials nur beim Import nicht zwingend erforderlich.

Closes #2776

Merge request studip/studip!3306
parent 84a50ecf
No related branches found
No related tags found
No related merge requests found
...@@ -122,8 +122,8 @@ ...@@ -122,8 +122,8 @@
<template v-slot:edit> <template v-slot:edit>
<form v-if="selectedUnit" class="default" @submit.prevent=""> <form v-if="selectedUnit" class="default" @submit.prevent="">
<label> <label>
<span>{{$gettext('Titel')}}</span><span aria-hidden="true" class="wizard-required">*</span> {{$gettext('Titel')}}
<input type="text" v-model="modifiedTitle" :placeholder="selectedUnitTitle" name="title" required /> <input type="text" v-model="modifiedTitle" :placeholder="selectedUnitTitle" name="title" />
</label> </label>
<label> <label>
{{$gettext('Farbe')}} {{$gettext('Farbe')}}
...@@ -153,8 +153,8 @@ ...@@ -153,8 +153,8 @@
</studip-select> </studip-select>
</label> </label>
<label> <label>
<span>{{$gettext('Beschreibung')}}</span><span aria-hidden="true" class="wizard-required">*</span> {{$gettext('Beschreibung')}}
<textarea v-model="modifiedDescription" :placeholder="selectedUnitDescription" required /> <textarea v-model="modifiedDescription" :placeholder="selectedUnitDescription" />
</label> </label>
</form> </form>
<courseware-companion-box <courseware-companion-box
......
...@@ -32,7 +32,7 @@ ...@@ -32,7 +32,7 @@
<form v-if="hasValidFile" class="default" @submit.prevent=""> <form v-if="hasValidFile" class="default" @submit.prevent="">
<label> <label>
{{ text.title }} {{ text.title }}
<input type="text" v-model="modifiedData.title" :placeholder="loadedTitle" required /> <input type="text" v-model="modifiedData.title" :placeholder="loadedTitle" />
</label> </label>
<label> <label>
{{ text.color }} {{ text.color }}
...@@ -63,7 +63,7 @@ ...@@ -63,7 +63,7 @@
</label> </label>
<label> <label>
{{ text.description }} {{ text.description }}
<textarea v-model="modifiedData.description" :placeholder="loadedDescription" required /> <textarea v-model="modifiedData.description" :placeholder="loadedDescription" />
</label> </label>
</form> </form>
<courseware-companion-box <courseware-companion-box
......
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