Skip to content

Commit

Permalink
fix(SFI-958): update BM to use correct config function
Browse files Browse the repository at this point in the history
  • Loading branch information
shanikantsingh committed Nov 1, 2024
1 parent 56562c4 commit 15a4059
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<div class="form-group">
<label class="form-title mb-0" for="level23DataAuthorisation">Level 2/3 Data</label>
<small id="level23DataAuthorisationHelp" class="form-text mb-1">
2/3 Data gives you interchange discounts on US domestic transactions. Your shoppers will also see additional data about their purchases on their credit card statements.
2/3 Data gives you interchange discounts on US domestic transactions. Your shoppers will also see additional data about their purchases on their credit card statements.
<a class="text-primary" href="https://ca-live.adyen.com/ca/ca/contactUs/support.shtml" target="_blank">Check if your business is eligible for Level 2/3 Data.</a>
</small>
<div class="radio-buttons">
Expand Down Expand Up @@ -69,15 +69,15 @@
<div class="form-group border-top mt-4">
<label class="form-title mt-4" for="adyenAnalytics">Adyen Plugin Performance Monitoring</label>
<small id="adyenAnalyticsHelp" class="form-text mb-1">
Enable this feature to allow Adyen to monitor your plugin’s performance, detect potential issues, and proactively enhance stability. By sharing performance data, you help ensure proactive support and minimize downtime.
Enable this feature to allow Adyen to monitor your plugin’s performance, detect potential issues, and proactively enhance stability. By sharing performance data, you help ensure proactive support and minimize downtime.
</small>
<div class="radio-buttons">
<div class="form-check form-check-inline">
<input class="form-check-input" type="radio" name="AdyenAnalytics_Enabled" id="AdyenAnalyticsYes" value=true ${AdyenConfigs.getAdyenAnalyticsEnabled() ? 'checked': ''}>
<input class="form-check-input" type="radio" name="AdyenAnalytics_Enabled" id="AdyenAnalyticsYes" value=true ${AdyenConfigs.isAdyenAnalyticsEnabled() ? 'checked': ''}>
<label class="form-check-label" for="AdyenAnalyticsYes">Enable</label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input" type="radio" name="AdyenAnalytics_Enabled" id="AdyenAnalyticsNo" value=false ${!AdyenConfigs.getAdyenAnalyticsEnabled() ? 'checked': ''}>
<input class="form-check-input" type="radio" name="AdyenAnalytics_Enabled" id="AdyenAnalyticsNo" value=false ${!AdyenConfigs.isAdyenAnalyticsEnabled() ? 'checked': ''}>
<label class="form-check-label" for="AdyenAnalyticsNo">Disable</label>
</div>
</div>
Expand Down

0 comments on commit 15a4059

Please sign in to comment.