David Golden

Results 20 comments of David Golden

For anyone else running into this issue, I also had this problem and since I'm dealing with dynamic data I couldn't just adjust the margins. My scrollbar element is absolutely...

@harrisrobin's response above worked for me. Had the same issue but this was a viable workaround.

It's because of this line in `src/subParsers/makeMarkdown/list.js`: ``` // add comment at the end to prevent consecutive lists to be parsed as one txt += '\n\n'; return txt.trim(); ``` This...

As a workaround until there's a supported fix, I've implemented the following extension to remove any empty list items: ``` export const removeEmptyListItems = () => { return [{ type:...

For @dpmccabe and those looking at this in the future, I ran into a similar issue. Zappa's logic for checking the cache is here https://github.com/zappa/Zappa/blob/a1e842cf95e5bd99a84e89d5eaaed42ff82f57eb/zappa/core.py#L951 Here https://docs.python.org/3/library/tempfile.html#tempfile.gettempdir it states a...

@STRML Right, but different actions might need to be performed based on whether the grid changed from a drag or a resize, and onLayoutChange doesn't allow that.

Yep I'll try to get that done today! Also one more case for this change is that `onLayoutChange` is called on initial render, which isn't suitable for change effects.

@STRML This one got away from me! I'm trying to add a test and struggling to figure out how to simulate a drag or resize event such that the callbacks...

Right that is the first place I looked, but those don't seem to trigger the callbacks for whatever reason. I've tried a few other things but nothing's worked for me...

Should not be stale. Without these changes `onResizeStop` and `onDragStop` are pretty much useless.