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
When the selected child is removed from the ViewStack, the _visibleChild property still references the detached node.
The _visibleChild property isn't nullified/re-assigned until (and if) show is called again.
We're dynamically showing/hiding nodes and there are instances where the view stack can be empty.
Perhaps ViewStack should do a superCall on Container.removeChild or listen for delite-remove-child and nullify _visibleChild if needed.
The text was updated successfully, but these errors were encountered:
Sure, makes sense.
Sorry, something went wrong.
84bad2b
clear this_visibleChild on removeChild(), fixes #593
af8d757
wkeese
No branches or pull requests
When the selected child is removed from the ViewStack, the _visibleChild property still references the detached node.
The _visibleChild property isn't nullified/re-assigned until (and if) show is called again.
We're dynamically showing/hiding nodes and there are instances where the view stack can be empty.
Perhaps ViewStack should do a superCall on Container.removeChild or listen for delite-remove-child and nullify _visibleChild if needed.
The text was updated successfully, but these errors were encountered: