Skip to content

Commit

Permalink
Fixed JS console error
Browse files Browse the repository at this point in the history
  • Loading branch information
nfourtythree committed Sep 11, 2024
1 parent 561d805 commit a08ccec
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@

## Unreleased

- Fixed a bug where some text wasn’t getting translated on the Edit Order page.
- Fixed a bug where some text wasn’t getting translated on the Edit Order page.
- Fixed a JavaScript error that could occur when editing an order.

## 4.6.11 - 2024-09-10

Expand Down
2 changes: 1 addition & 1 deletion src/web/assets/commerceui/dist/js/app.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/web/assets/commerceui/dist/js/app.js.map

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,10 @@
},
isLoadMoreVisible() {
if (!this.$store.state.draft.order.customer) {
return false;
}
if (
this.$store.state.draft.order.customer.totalAddresses ==
this.addresses.length
Expand Down

0 comments on commit a08ccec

Please sign in to comment.