ember-inspector
ember-inspector copied to clipboard
Object inspector visibility is not persisted
Describe the bug When navigating through the tree of components/routes/etc. the object inspector closes for some of them. It's unclear why or when this happens.
To Reproduce Steps to reproduce the behavior:
- Go to https://ember-super-rentals.netlify.app/
- Navigate and focus on
<Rental ...component - Observe the object inspector getting hidden
Expected behavior I would expect object inspector to be visible unless explicitly hidden (using a toggle on the right).
Screenshots

Environment Ember inspector 4.3.5, Ember 3.25.3
@kangax this is likely due to https://github.com/emberjs/ember-inspector/issues/1387. Template only components have no backing class, so they sidebar does not open for them.
I suppose we could think about keeping it open, but showing a message like template only components are not supported in object inspector at this time or something. @chancancode @pzuraq @nummi any thoughts?