-
Notifications
You must be signed in to change notification settings - Fork 182
New issue
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
Dispose() method in Viewer.ts #1544
Comments
Any news about this? We have a Vue3 web app with multiple routes. When the viewer is loaded the first time it works fine: But after routing back to the same viewer component the shading breaks: onBeforeUnmount(async () => {
if (viewer) {
await viewer.unloadAll();
viewer.dispose();
}
}); The current implementation of Refreshing the page does solve the issue which can also be done with Is there a better workaround? Thanks. |
Thank you for letting us know about this issue. We'll look into it as soon as we have some bandwidth available |
Hi again, do you have any information about a possible workaround for this issue? How can we properly dispose of the Renderer ourselves? |
Hello @Sticcia Thank you for your patience! We we will be looking into this issue in the following days and will surely come back with a resolution Cheers |
Hi @Sticcia We've merged in a fix for this issue and will be available in the next release soon! Cheers |
Thank you so much for the great work! |
Would be great to have Dispose() method in Viewer.ts implemented :)
The text was updated successfully, but these errors were encountered: