James Kerr

Results 115 comments of James Kerr

If there is no pool selected, or if there is a "No pool specified" error, we should turn the "results" area into a list of pools that when one is...

I'll expand this to include creating items from within the sidebar through a right click action.

@ttttmr Thank you for bringing this to my attention. I'll be working with the backend zed serve team to find a way to fix this.

Also, thank you for the clear example and the steps to mitigate. That was very helpful.

I usually make the height of the tree the same height as it's parent using a ResizeObserver on the parent, the passing the width/height to the tree. If you make...

Debugging stuff like this is hard. Dang. I’ll give this a more thorough read and post and example, but I’ve had to make the parent component have styles like min-height:...

Yes, I usually make the parent expand to fill it's parent (either with flex: 1 or the css below). ```css height: 100%; min-height: 0; ``` Then I add a ref...

Ok so in that case, you'll need to set overflow hidden on your Node renderer. Handle the ellipses in the Node Renderer as well. The tree component should fill its...