Skip to content

Commit 3fb96e8

Browse files
committed
MNB-401 Fix rendering of popup on 2.3.4+ for logged in customers
1 parent c18b077 commit 3fb96e8

File tree

5 files changed

+8
-6
lines changed

5 files changed

+8
-6
lines changed

CHANGELOG.MD

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,11 +37,12 @@ Updated README with grammar corrections
3737

3838
## 20.1.3
3939
SHQ18-65 - handle Google API authentication errors
40+
4041
## 20.2.1 (2018-07-27)
4142
SHQ18-260 Disable Google Chrome autofill if address lookup is enabled
4243

43-
4444
## 20.3.0 (2018-12-18)
4545
Added a setting to use extended postcodes when available
4646

47-
47+
## 20.3.1 (2020-06-18)
48+
MNB-401 Fix rendering of popup on 2.3.4+ for logged in customers
-25.8 KB
Binary file not shown.

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "shipperhq/module-address-autocomplete",
33
"description": "ShipperHQ Address Autocomplete Tool",
44
"type": "magento2-module",
5-
"version": "20.3.0",
5+
"version": "20.3.1",
66
"license": [
77
"OSL-3.0",
88
"AFL-3.0"

src/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "shipperhq/module-address-autocomplete",
33
"description": "ShipperHQ Address Autocomplete Tool",
44
"type": "magento2-module",
5-
"version": "20.3.0",
5+
"version": "20.3.1",
66
"license": [
77
"OSL-3.0",
88
"AFL-3.0"

src/view/frontend/web/css/source/_module.less

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1-
// /* We acknowledge this contribution from jmonschke via github https://github.com/shipperhq/module-address-autocomplete/issues/5
2-
@googleplaces__z-index: @modal__z-index + 1;
1+
// We acknowledge this contribution from jmonschke via github https://github.com/shipperhq/module-address-autocomplete/issues/5
2+
// MNB-401 Changed from +1 to +5 to account for @modal-popup__z-index being higher on 2.3.5 for logged in customers
3+
@googleplaces__z-index: @modal__z-index + 5;
34

45
.pac-container {
56
z-index: @googleplaces__z-index !important;

0 commit comments

Comments
 (0)