Skip to content

Commit

Permalink
Merge branch '2023080811-fix-duplicate-caseworker-export-excel' into …
Browse files Browse the repository at this point in the history
…staging
  • Loading branch information
kirykr committed Aug 14, 2023
2 parents f545552 + c01f2ae commit 0678c30
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/grids/client_grid.rb
Original file line number Diff line number Diff line change
Expand Up @@ -981,7 +981,7 @@ def call_fields
end

column(:donor_name, order: false, header: -> { I18n.t('datagrid.columns.clients.donor')}) do |object|
object.donors.pluck(:name).join(', ')
object.donors.distinct.map(&:name).join(', ')
end

column(:arrival_at, header: -> { I18n.t('clients.form.arrival_at')}) do |object|
Expand Down

0 comments on commit 0678c30

Please sign in to comment.