Skip to content

Commit 08fb445

Browse files
authored
fix: fix isPaytmAcitvated attribute save (#3385)
1 parent 1c3c4bf commit 08fb445

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app/templates/components/forms/admin/settings/payment-gateway-form.hbs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -240,9 +240,9 @@
240240
<label>
241241
{{t 'Enable PayTM'}}
242242
</label>
243-
{{ui-checkbox class='toggle' checked=isPaytmActivated onChange=(action (mut isPaytmActivated))}}
243+
{{ui-checkbox class='toggle' checked=settings.isPaytmActivated onChange=(action (mut settings.isPaytmActivated))}}
244244
</div>
245-
{{#if isPaytmActivated}}
245+
{{#if settings.isPaytmActivated}}
246246
<h3 class="ui header">
247247
{{t 'PayTM Credentials'}}
248248
<div class="sub header">

0 commit comments

Comments
 (0)