Eric Willenson
Eric Willenson
As of now, does debugging an external process (using `"request": "attach"`) work? I'm trying to debug a next.js project but I can't get vscode-js-debug to attach to the node process....
Also seeing the same thing. Adding a when clause "vim.mode == 'VisualLine'" to the shortcut doesn't seem to do anything.
Just solved this problem in my own application. The problem was that the immediate child of my `` component was a single `table` element that contained my repeatable elements. I...
@Jaikant Initially I started with: ``` { tableRows } ``` but what worked is: ``` { tableRows } ``` The direct child of my `` component is a single ``...
@SmboBeast No problem. If the row Height is totally dynamic, yes, I think that's the most idiomatic way using this library. Another option I see floating around is to create...
@SmboBeast come back and let us know what you find. Seems like a good opportunity for a fork.
@SmboBeast nice, sounds like it's working well. I think it's generally not a good idea to call `setState` from `componentDidUpdate` for exactly the reason you described. To avoid rendering twice...
@SmboBeast I think I'm misunderstanding, but you mentioned that your listItems have a height of 180, so it seems like you could multiply that by the number of listItems you...