Skip to content

Commit

Permalink
Adds cvv outside of payment methods loop. updates classNames for styl…
Browse files Browse the repository at this point in the history
…ing.
  • Loading branch information
wjames111 committed Nov 19, 2024
1 parent 4b4566c commit e7e389d
Showing 1 changed file with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,14 @@
<input type="radio" name="paymentMethod" ng-model="$ctrl.selectedPaymentMethod" ng-value="paymentMethod" ng-disabled="expired" required ng-change="$ctrl.switchPayment()">
<payment-method-display payment-method="paymentMethod" expired="expired"></payment-method-display>
<button class="btn btn-xs btn-link" ng-click="$ctrl.openPaymentMethodFormModal(paymentMethod)" ng-if="paymentMethod['card-type']" translate>edit</button>
<form novalidate name="$ctrl.creditCardPaymentForm">
</label>
</div>
<div class="row">
<div class="col-sm-4">
<form novalidate name="$ctrl.creditCardPaymentForm" ng-if="!$ctrl.hideCvv">
<credit-card-cvv/>
</form>
</label>
</div>
</div>

<div class="panel panel-default tab-toggle mb0 mt"
Expand Down

0 comments on commit e7e389d

Please sign in to comment.