mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-18 03:00:58 +08:00
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:
@ -139,8 +139,8 @@ export class Select implements ComponentInterface {
|
||||
}
|
||||
|
||||
@Listen('click')
|
||||
onClick() {
|
||||
this.open();
|
||||
onClick(ev: UIEvent) {
|
||||
this.open(ev);
|
||||
}
|
||||
|
||||
async componentDidLoad() {
|
||||
|
Reference in New Issue
Block a user