Skip to content

Commit

Permalink
Merge pull request #2763 from mdesmet/myorders-develop
Browse files Browse the repository at this point in the history
correct magento order id in my orders
  • Loading branch information
pkarw committed Apr 23, 2019
2 parents 940fef9 + 005e48f commit 54ac6e4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Fixed
- ESlint throwing errors about undefined jest globals in tests - @lukeromanowicz (#2702)
- Fixed changing the country when entering shipping address in checkout not updating shipping costs - @revlis-x (#2691)
- Correct magento order id in my orders - @mdesmet (#2763)

## [1.9.0-rc.2] - 2019.04.10

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
</thead>
<tbody>
<tr class="brdr-top-1 brdr-cl-bg-secondary" v-for="order in ordersHistory" :key="order.entity_id">
<td class="fs-medium lh25">{{ order.entity_id }}</td>
<td class="fs-medium lh25">#{{ order.increment_id }}</td>
<td class="fs-medium lh25 hide-on-xs">{{ order.created_at | date }}</td>
<td class="fs-medium lh25 hide-on-xs">{{ order.customer_firstname }} {{ order.customer_lastname }}</td>
<td class="fs-medium lh25 hide-on-xs">{{ order.grand_total | price }}</td>
Expand Down

0 comments on commit 54ac6e4

Please sign in to comment.