fix(select): pass click event to popover interface (#17146)

also updates e2e test so that it will continue to take screenshots after mismatches and adds the popover example to avoid future regressions

references #16715 fixes #17142
This commit is contained in:
Brandy Carney
2019-01-17 12:16:31 -05:00
committed by GitHub
parent ceae5d20d7
commit 3ff9fafe8e
3 changed files with 52 additions and 12 deletions

View File

@ -139,8 +139,8 @@ export class Select implements ComponentInterface {
}
@Listen('click')
onClick() {
this.open();
onClick(ev: UIEvent) {
this.open(ev);
}
async componentDidLoad() {