Skip to content

Commit

Permalink
Merge pull request #88 from logeecom/master
Browse files Browse the repository at this point in the history
Release version 3.4.4
  • Loading branch information
jlrvilla authored Jul 12, 2024
2 parents 05aa4a7 + 28e5ca7 commit 070f18f
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).

## [3.4.4](https://github.com/packlink-dev/ecommerce_module_core/compare/v3.4.3...v3.4.4) - 2024-07-12
### Changed
- Fix front for integrations which still doesn't support customs

## [3.4.3](https://github.com/packlink-dev/ecommerce_module_core/compare/v3.4.2...v3.4.3) - 2024-07-08
### Changed
- Add unsupported country Algeria
Expand Down
9 changes: 6 additions & 3 deletions src/BusinessLogic/Resources/js/ConfigurationController.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,12 @@ if (!window.Packlink) {
state.goToState('order-status-mapping');
});

mainPage.querySelector('#pl-navigate-customs').addEventListener('click', () => {
state.goToState('customs')
})
let customs = mainPage.querySelector('#pl-navigate-customs')
if(customs) {
customs.addEventListener('click', () => {
state.goToState('customs')
})
}

mainPage.querySelector('#pl-navigate-warehouse').addEventListener('click', () => {
state.goToState('default-warehouse', {
Expand Down

0 comments on commit 070f18f

Please sign in to comment.