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
When loading many triples into a custom reactive rdf.dataset() I get the error:
Uncaught (in promise) Maximum recursive updates exceeded in component <App>. This means you have a reactive effect that is mutating its own dependencies and thus recursively triggering itself. Possible sources include component template, render function, updated hook or watcher source function.
This does not happen when I have a file being loaded with few triples.
A few functions are watching the graphData variable for updates, and I'm guessing this is what then triggers too many recursive updates. It looks like we need a way to limit the triggers somehow. E.g. during the data loading step, the watchers do not actually need to run their code, this is basically only needed when a user completes form fields.
The text was updated successfully, but these errors were encountered:
Found during work on #47.
When loading many triples into a custom reactive
rdf.dataset()
I get the error:This does not happen when I have a file being loaded with few triples.
A few functions are
watch
ing thegraphData
variable for updates, and I'm guessing this is what then triggers too many recursive updates. It looks like we need a way to limit the triggers somehow. E.g. during the data loading step, the watchers do not actually need to run their code, this is basically only needed when a user completes form fields.The text was updated successfully, but these errors were encountered: