abigailalice
abigailalice
I tried wrapping my render functions in a div like the workaround suggested, and it does seem like that fixed it. Thanks.
I get ``` index.js:46768 Uncaught ReferenceError: require is not defined at index.js:46768:38 at index.js:46887:3 (anonymous) @ index.js:46768 (anonymous) @ index.js:46887 ```
That did seem to fix it. I'm not sure if I ever did change versions, though I don't have a great mental model of the purescript tool stack, so I...
Is there anything preventing this from being extended to most of the rest of `EventResultType`? I've needed extra information from keyboard events and mouse events, and have been using `wrapDomEvent`...
That seems simple enough, though would the type of `arrayAgg` restrict that from working with nullable fields? I think I might be able to work around that if it's a...
Should I need a `DefaultFromFields (SqlArray_ 'Nullable sqlType) [Maybe haskellType]` instance? Trying to test it in my own code said it was a missing instance, and I do see there's...
So I tried using `arrayAgg_` as you suggested and it looks like things are working, though my use of it wasn't super extensive. The workaround with the zipping instead of...
So if this can be accomplished with the product-profunctors interface instead of lenses it might be worthwhile adding an example to the documentation for `arrayAgg_` mentioning the zipping idiom, but...