1234567891011121314151617 |
- <!--
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- -->
- <!-- ko if: isDisplayed() -->
- <tr class="totals discount">
- <th class="mark" scope="row">
- <span class="title" data-bind="text: getTitle()"></span>
- <span class="discount coupon" data-bind="text: getCouponCode()"></span>
- </th>
- <td class="amount">
- <span class="price" data-bind="text: getValue(), attr: {'data-th': name}"></span>
- </td>
- </tr>
- <!-- /ko -->
|