FIX: Fix syntax for some buttons following recent updates (#159)
This commit is contained in:
parent
c06ae37048
commit
9aa4a44b2a
|
@ -89,7 +89,7 @@
|
||||||
@type="checkbox"
|
@type="checkbox"
|
||||||
name="recurring"
|
name="recurring"
|
||||||
@checked={{model.plan.isRecurring}}
|
@checked={{model.plan.isRecurring}}
|
||||||
{{on "change" this.changeRecurring}}
|
{{on "change" (action "changeRecurring")}}
|
||||||
/>
|
/>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
</p>
|
</p>
|
||||||
|
|
|
@ -40,7 +40,7 @@
|
||||||
|
|
||||||
<DButton
|
<DButton
|
||||||
@disabled={{loading}}
|
@disabled={{loading}}
|
||||||
@action={{this.stripePaymentHandler}}
|
@action={{action "stripePaymentHandler"}}
|
||||||
class="btn btn-primary btn-payment"
|
class="btn btn-primary btn-payment"
|
||||||
@label="discourse_subscriptions.plans.payment_button"
|
@label="discourse_subscriptions.plans.payment_button"
|
||||||
/>
|
/>
|
||||||
|
|
Loading…
Reference in New Issue