You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I think this will happen even with other components, but it is Field (line 70) that I tried to use now. Error occurs by just having the component on the page.
The error stopped the svelte-router from working properly!
Uncaught (in promise) TypeError: Cannot read property 'children' of undefined
$: {
if (grouped) fieldType = 'is-grouped'
else if (mounted) {
const childNodes = Array.prototype.filter.call(**el.children**, c => !([labelEl, messageEl].includes(c)))
if (childNodes.length > 1 && addons) {
fieldType = 'has-addons'
}
}
}
I think this will happen even with other components, but it is Field (line 70) that I tried to use now. Error occurs by just having the component on the page.
The error stopped the svelte-router from working properly!
Uncaught (in promise) TypeError: Cannot read property 'children' of undefined
Example project: https://github.com/Blm0423/svelma-router-problem.git
The text was updated successfully, but these errors were encountered: