We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
No description provided.
The text was updated successfully, but these errors were encountered:
Issue raised against Svelte-Grid
Sorry, something went wrong.
Added hopefully a temp workaround until the issue is possibly resolved by Svelte internals or by the luck of the Irish
$: if (dialog) { fixDialogIssueWithSvelteGrid(); } function fixDialogIssueWithSvelteGrid() { const dialog = new MDCDialog(document.querySelector(".mdc-dialog")); dialog.listen("MDCDialog:opened", () => { var newParent = document.getElementById("body"); var oldParent = document.getElementById("dialog-fix-wrapper"); while (oldParent.childNodes.length > 0) { newParent.appendChild(oldParent.childNodes[0]); } }); }
Fixes #137 as a workaround move the dialog and reposition in the DOM
9b7b5b8
Visual artifacts when moving the dialog - i.e. you can see the grid layout prior to it being moved behind which looks janky
No branches or pull requests
No description provided.
The text was updated successfully, but these errors were encountered: