Skip to content

Commit

Permalink
Installments add rule button not rendering properly (#1023)
Browse files Browse the repository at this point in the history
  • Loading branch information
zenit2001 committed Dec 5, 2023
1 parent 8d01bc4 commit 0494251
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -497,9 +497,9 @@ ul{
}

#addRuleButton{
position: absolute;
bottom: 35px;
left:70px;
position: relative;
margin-inline-end: auto;
margin-bottom : 10px;
}

#removeRuleButton {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,9 @@ function begin(req, res, next) {

const clientKey = AdyenConfigs.getAdyenClientKey();
const environment = AdyenHelper.getCheckoutEnvironment();
const installments = AdyenConfigs.getCreditCardInstallments();
const installments = AdyenConfigs.getAdyenInstallmentsEnabled()
? AdyenConfigs.getCreditCardInstallments()
: {};
const adyenClientKey = AdyenConfigs.getAdyenClientKey();
const googleMerchantID = AdyenConfigs.getGoogleMerchantID();
const merchantAccount = AdyenConfigs.getAdyenMerchantAccount();
Expand Down

0 comments on commit 0494251

Please sign in to comment.