Skip to content

Commit

Permalink
fix(view-orders): resolve #2
Browse files Browse the repository at this point in the history
  • Loading branch information
logan-hernandez committed Apr 15, 2022
1 parent 1018bf5 commit a004030
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion application/src/components/view-orders/ordersList.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ const OrdersList = (props) => {
<p>Ordered by: {order.ordered_by || ''}</p>
</div>
<div className="col-md-4 d-flex view-order-middle-col">
<p>Order placed at {`${createdDate.getHours()}:${createdDate.getMinutes()}:${createdDate.getSeconds()}`}</p>
<p>Order placed at {createdDate.toTimeString().split(' ')[0]}</p>
<p>Quantity: {order.quantity}</p>
</div>
<div className="col-md-4 view-order-right-col">
Expand Down

0 comments on commit a004030

Please sign in to comment.