fix(popover): popover opens on chrome 109 (#26672)

resolves #26643
This commit is contained in:
Liam DeBeasi
2023-01-30 11:55:20 -05:00
committed by GitHub
parent 95a3c69bbb
commit 69d89eae94
6 changed files with 57 additions and 27 deletions

View File

@ -21,15 +21,6 @@ export const VueDelegate = (
componentProps: any = {},
classes?: string[]
) => {
/**
* Ionic Framework passes in modal and popover element
* refs as props, but if these are not defined
* on the Vue component instance as props, Vue will
* warn the user.
*/
delete componentProps["modal"];
delete componentProps["popover"];
const div = document.createElement("div");
classes && div.classList.add(...classes);
parentElement.appendChild(div);