mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-18 03:00:58 +08:00
fix(all): Ionic components that use child Ionic components are now correctly defined (#24191)
resolves #23571, #24116, #24129 Co-authored-by: Liam DeBeasi <liamdebeasi@icloud.com>
This commit is contained in:
@ -360,6 +360,16 @@ export class Select implements ComponentInterface {
|
||||
options: this.createPopoverOptions(this.childOpts, value)
|
||||
}
|
||||
};
|
||||
|
||||
/**
|
||||
* Workaround for Stencil to autodefine ion-select-popover.
|
||||
*/
|
||||
// tslint:disable-next-line
|
||||
if (false) {
|
||||
// @ts-ignore
|
||||
document.createElement('ion-select-popover');
|
||||
}
|
||||
|
||||
return popoverController.create(popoverOpts);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user