Skip to content

Commit 8abc48b

Browse files
committed
fix: resource-select#togglePop now really fixed
1 parent ac55f0a commit 8abc48b

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
"@ec.components/ui": "latest",
4848
"ace-builds": "^1.4.2",
4949
"core-js": "^2.5.4",
50-
"ec.sdk": "^0.17.18",
50+
"ec.sdk": "^0.17.20",
5151
"googlemaps": "^1.12.0",
5252
"lerna": "^3.10.5",
5353
"medium-editor": "^5.23.2",

packages/data/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"peerDependencies": {
1515
"@angular/common": "^7.2.0",
1616
"@angular/core": "^7.2.0",
17-
"ec.sdk": "^0.17.18"
17+
"ec.sdk": "^0.17.20"
1818
},
1919
"gitHead": "86e9b9eb3470a98ef951b70921e3119eb0c7c03c"
2020
}

packages/data/src/lib/resource-select/resource-select.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ export class ResourceSelectComponent extends SelectComponent<Resource> implement
8383
togglePop(e) {
8484
if (this.dropdown && this.config && !this.config.disableSearchbar) {
8585
this.dropdown.show(e);
86-
} else if (this.resourceListPop && !this.config.disableListPop) {
86+
} else if (this.resourceListPop && this.config && !this.config.disableListPop) {
8787
this.resourceListPop.show(e);
8888
} else if (this.resourcePop && !this.config.disableCreatePop) {
8989
this.resourcePop.show();

0 commit comments

Comments
 (0)