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"
type="file"
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"
/>
<it-icon-document class="mr-1.5 h-7 w-7 text-blue-800" />
{{ $t("a.Datei auswählen") }}
</div>
<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 class="mb-8 text-sm text-gray-900">
{{ $t("a.Maximale Dateigrösse") }}: 20 MB
{{ $t("a.Maximale Dateigrösse") }}: 50 MB
</p>
</template>