Merged in feature/VBV-607-upload-quota-files (pull request #249)

Change upload quota text, add file extension
This commit is contained in:
Christian Cueni 2023-12-13 06:17:20 +00:00
commit fb6a01d25a
1 changed files with 3 additions and 3 deletions

View File

@ -67,17 +67,17 @@ function handleDelete() {
id="upload" id="upload"
type="file" type="file"
class="absolute opacity-0" class="absolute opacity-0"
accept=".pdf,.jpg,.jpeg,.png,.doc,.docx,.mov,.ppt,.pptx" accept=".pdf,.jpg,.jpeg,.png,.doc,.docx,.mov,.ppt,.pptx,.mp4"
@change="fileSelected" @change="fileSelected"
/> />
<it-icon-document class="mr-1.5 h-7 w-7 text-blue-800" /> <it-icon-document class="mr-1.5 h-7 w-7 text-blue-800" />
{{ $t("a.Datei auswählen") }} {{ $t("a.Datei auswählen") }}
</div> </div>
<p class="text-sm text-gray-900"> <p class="text-sm text-gray-900">
{{ $t("a.Mögliche Formate") }}: .JPG, .PNG, .PDF, .DOC, .MOV, .PPT {{ $t("a.Mögliche Formate") }}: .JPG, .PNG, .PDF, .DOC, .MOV, .PPT, .MP4
</p> </p>
<p class="mb-8 text-sm text-gray-900"> <p class="mb-8 text-sm text-gray-900">
{{ $t("a.Maximale Dateigrösse") }}: 20 MB {{ $t("a.Maximale Dateigrösse") }}: 50 MB
</p> </p>
</template> </template>