summaryrefslogtreecommitdiff
path: root/client/components/OrderList.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'client/components/OrderList.jsx')
-rw-r--r--client/components/OrderList.jsx4
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>
)