diff options
| author | Jules Laplace <jules@okfoc.us> | 2017-04-21 20:38:57 -0400 |
|---|---|---|
| committer | Jules Laplace <jules@okfoc.us> | 2017-04-21 20:38:57 -0400 |
| commit | 843e98f4b952b697b212e1e1a0471257f3924ff8 (patch) | |
| tree | 91dfd3742ad17f34e9f4f2b47c79cad8655d81a3 /client/components/OrderList.jsx | |
| parent | 4c0f1785720f2cab83a1158e49cbb7bc353b9ce7 (diff) | |
target blank
Diffstat (limited to 'client/components/OrderList.jsx')
| -rw-r--r-- | client/components/OrderList.jsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/client/components/OrderList.jsx b/client/components/OrderList.jsx index 5b0380b..c84fd3d 100644 --- a/client/components/OrderList.jsx +++ b/client/components/OrderList.jsx @@ -60,12 +60,12 @@ export default class OrderList extends React.Component { const items = this.parseOrders().map((order, i) => { const order_link = ( - <a href={'http://shopping.msana.com/cw4/admin/order-details.php?order_id=' + order.order_id}> + <a href={'http://shopping.msana.com/cw4/admin/order-details.php?order_id=' + order.order_id} target='_blank'> (order) </a> ) const customer_link = order.order_checkout_type === 'guest' ? '' : ( - <a href={'http://shopping.msana.com/cw4/admin/customer-details.php?customer_id=' + order.order_customer_id}> + <a href={'http://shopping.msana.com/cw4/admin/customer-details.php?customer_id=' + order.order_customer_id} target='_blank'> (customer) </a> ) |
