diff --git a/CHANGELOG.MD b/CHANGELOG.MD index 79f8062..83f1d6f 100755 --- a/CHANGELOG.MD +++ b/CHANGELOG.MD @@ -37,11 +37,12 @@ Updated README with grammar corrections ## 20.1.3 SHQ18-65 - handle Google API authentication errors + ## 20.2.1 (2018-07-27) SHQ18-260 Disable Google Chrome autofill if address lookup is enabled - ## 20.3.0 (2018-12-18) Added a setting to use extended postcodes when available - +## 20.3.1 (2020-06-18) +MNB-401 Fix rendering of popup on 2.3.4+ for logged in customers diff --git a/ZIP/Address Autocomplete M2-20.2.0.zip b/ZIP/Address Autocomplete M2-20.2.0.zip deleted file mode 100644 index c3cb4ca..0000000 Binary files a/ZIP/Address Autocomplete M2-20.2.0.zip and /dev/null differ diff --git a/composer.json b/composer.json index 54bc408..fa9ecc4 100755 --- a/composer.json +++ b/composer.json @@ -2,7 +2,7 @@ "name": "shipperhq/module-address-autocomplete", "description": "ShipperHQ Address Autocomplete Tool", "type": "magento2-module", - "version": "20.3.0", + "version": "20.3.1", "license": [ "OSL-3.0", "AFL-3.0" diff --git a/src/composer.json b/src/composer.json index 0bfe6eb..62d9d77 100755 --- a/src/composer.json +++ b/src/composer.json @@ -2,7 +2,7 @@ "name": "shipperhq/module-address-autocomplete", "description": "ShipperHQ Address Autocomplete Tool", "type": "magento2-module", - "version": "20.3.0", + "version": "20.3.1", "license": [ "OSL-3.0", "AFL-3.0" diff --git a/src/view/frontend/web/css/source/_module.less b/src/view/frontend/web/css/source/_module.less index fa7e4bc..bd01446 100644 --- a/src/view/frontend/web/css/source/_module.less +++ b/src/view/frontend/web/css/source/_module.less @@ -1,5 +1,6 @@ -// /* We acknowledge this contribution from jmonschke via github https://github.com/shipperhq/module-address-autocomplete/issues/5 -@googleplaces__z-index: @modal__z-index + 1; +// We acknowledge this contribution from jmonschke via github https://github.com/shipperhq/module-address-autocomplete/issues/5 +// MNB-401 Changed from +1 to +5 to account for @modal-popup__z-index being higher on 2.3.5 for logged in customers +@googleplaces__z-index: @modal__z-index + 5; .pac-container { z-index: @googleplaces__z-index !important;