filament-curator icon indicating copy to clipboard operation
filament-curator copied to clipboard

Fix Breaking Change in Form/Uploader

Open onairmarc opened this issue 5 months ago • 14 comments

Removed && config('livewire.temporary_file_upload.directory') !== null from Form/Uploader on Line 103 due to a breaking change.

Livewire's config file defaults to null for livewire.temporary_file_upload.directory. If this config key has a value of null, Livewire internally sets this to livewire-tmp. PR #451 introduces a breaking change for people who have not customized livewire.temporary_file_upload.directory.

The temporary fix is to manually set a config value for livewire.temporary_file_upload.directory. The permanent fix is the changes made in this PR.

onairmarc avatar Mar 02 '24 23:03 onairmarc