Skip to content

Commit

Permalink
MNB-401 Fix rendering of popup on 2.3.4+ for logged in customers
Browse files Browse the repository at this point in the history
  • Loading branch information
wsajason committed Jun 18, 2020
1 parent c18b077 commit 3fb96e8
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 6 deletions.
5 changes: 3 additions & 2 deletions CHANGELOG.MD
Original file line number Diff line number Diff line change
Expand Up @@ -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
Binary file removed ZIP/Address Autocomplete M2-20.2.0.zip
Binary file not shown.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion src/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
5 changes: 3 additions & 2 deletions src/view/frontend/web/css/source/_module.less
Original file line number Diff line number Diff line change
@@ -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;
Expand Down

0 comments on commit 3fb96e8

Please sign in to comment.