Change upload quota text, add file extension

This commit is contained in:
Christian Cueni 2023-12-12 16:25:04 +01:00
parent a4ac834699
commit 2286dbaa34
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>