File tree Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,6 @@ Type,Type
1111ending,ending
1212Actions,Actions
1313Delete,Delete
14- "PayPal Account","PayPal Account"
14+ "Account","Account"
1515Cancel,Cancel
1616"Are you sure you want to delete this card: %1?","Are you sure you want to delete this card: %1?"
Original file line number Diff line number Diff line change 55 */
66
77/** @var \Magento\Vault\Block\Customer\AccountTokens $block */
8+ /** @var $escaper \Magento\Framework\Escaper */
89$ tokens = $ block ->getPaymentTokens ();
910?>
10- <?php if (count ($ tokens ) !== 0 ) : ?>
11+ <?php if (count ($ tokens ) !== 0 ): ?>
1112 <div class="table-wrapper my-credit-cards">
1213 <table class="data table table-credit-cards" id="token-list-table">
1314 <thead>
1415 <tr>
15- <th scope="col" class="col"><?= $ block ->escapeHtml (__ ('PayPal Account ' )) ?> </th>
16+ <th scope="col" class="col"><?= $ escaper ->escapeHtml (__ ('Account ' )) ?> </th>
1617 <th scope="col" class="col actions"> </th>
1718 </tr>
1819 </thead>
1920 <tbody>
20- <?php foreach ($ tokens as $ token ) : ?>
21+ <?php foreach ($ tokens as $ token ): ?>
2122 <?= /* @noEscape */ $ block ->renderTokenHtml ($ token ) ?>
2223 <?php endforeach ; ?>
2324 </tbody>
You can’t perform that action at this time.
0 commit comments