Fix Egg Importer Upload File Type Filter (#2000)

This commit is contained in:
Charles 2025-12-13 22:46:03 -05:00 committed by GitHub
parent 59f0fe1959
commit 2f5790b121
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -120,7 +120,7 @@ class ImportEggAction extends Action
FileUpload::make('files')
->label(trans('admin/egg.model_label'))
->hint(trans('admin/egg.import.egg_help'))
->acceptedFileTypes(['application/json', 'application/yaml', 'application/x-yaml', 'text/yaml'])
->acceptedFileTypes(['application/json', 'application/x-yaml', 'text/yaml', '.yaml', '.yml'])
->preserveFilenames()
->previewable(false)
->storeFiles(false)