Skip to content

Commit 42824d4

Browse files
committed
Remove skip blanks for consistency
1 parent df08d79 commit 42824d4

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

app/controllers/concerns/importable.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ module Importable
2525
def import_csv
2626
if params[:file].present?
2727
data = File.read(params[:file].path, encoding: "BOM|UTF-8")
28-
csv = CSV.parse(data, headers: true, skip_blanks: true)
28+
csv = CSV.parse(data, headers: true)
2929
if csv.count.positive? && csv.first.headers.all? { |header| !header.nil? }
3030
results = resource_model.import_csv(csv, current_organization.id)
3131
if results[:errors].empty?

0 commit comments

Comments
 (0)