Allow CSV delimiter of ImportAction failed rows export to be changed #17561
FlorisDerks
started this conversation in
Ideas
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
For normal imports and exports, it's already possible to change the CSV delimiter from
,
to the more internationally used;
. However, when an import fails, you currently get the option to download a CSV with the failed rows, and there is currently no way to change the delimiter in that file.In
Filament\Actions\Imports\Http\Controllers\DownloadImportFailureCsv
from line 39 onwards I see that the writer is initiated and the output BOM is set to UTF-8, after which the failed rows are added to the writer, but any other configuration is missing. It would be great if this delimiter is configurable, or simply uses the same delimiter as the just imported CSV was set to.Beta Was this translation helpful? Give feedback.
All reactions