Skip to content

Rails 5 export CSV problem #8

@adolfopeccin

Description

@adolfopeccin

Hello,
After upgrading to Rails 5, the export CSV has broken.

Fixed it changing

format.csv do
   send_data @dataclip.csv_string, type: Mime::CSV, disposition: "attachment; filename=#{@dataclip.token}.csv"
end

to

format.csv do
   send_data @dataclip.csv_string, type: Mime[:csv], disposition: "attachment; filename=#{@dataclip.token}.csv"
end

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions