We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 382f4db commit 8aec571Copy full SHA for 8aec571
resources/js/wysiwyg/ui/decorators/MentionDecorator.ts
@@ -74,7 +74,7 @@ function handleUserListLoading(selectList: HTMLElement) {
74
}
75
76
const doc = htmlToDom(responseHtml);
77
- const toInsert = doc.body.children;
+ const toInsert = [...doc.body.children];
78
for (const listEl of toInsert) {
79
const adopted = window.document.adoptNode(listEl) as HTMLElement;
80
selectList.appendChild(adopted);
0 commit comments