Fix bug in refunds_controller
This commit is contained in:
parent
3eb8b958f0
commit
a38937cadb
1 changed files with 1 additions and 1 deletions
|
@ -19,7 +19,7 @@ module Nonprofits
|
||||||
def index
|
def index
|
||||||
charge = current_nonprofit.charges.find(params[:charge_id])
|
charge = current_nonprofit.charges.find(params[:charge_id])
|
||||||
@refunds = charge.refunds
|
@refunds = charge.refunds
|
||||||
render locals: {refunds: @refund}}
|
render locals: {refunds: @refund}
|
||||||
end
|
end
|
||||||
|
|
||||||
private
|
private
|
||||||
|
|
Loading…
Reference in a new issue