Folkert de Vries
Folkert de Vries
When chaining multiple `assign`/`merge` calls that need to change the object root, I was expecting them all to have an effect. Instead only the last `assign`/`merge` is applied. ```js const...
The [documentation of `Trans`](https://lingui.js.org/ref/macro.html#trans) has the following example: ```jsx ``` Since the number tags don't provide much context to the translator I was hoping I could use named tags instead...
To test this issue you can use the following html: ``` html Row 1 Row 2 Row 3 Row 4 Row 5 Row 6 $("div tr:first").each(function() { alert($(this).text()) }) ```...
When using Apollo Client (specifically `subscriptions-transport-ws`) the [websocket client expects](https://github.com/apollographql/subscriptions-transport-ws/blob/567fca89cb4578371877faee09e1630dcddff544/src/client.ts#L614) either a `connection_ack` or `connection_error` response from the server after sending the initial `connection_init` message. Currently, `graphene-subscriptions` just ignores these...
After running into too many issues getting strict inline styles to work, I've decided to use `unsafe-inline` for `style-src`. I have configured `'style-src': ['self', 'unsafe-inline']` in the directives, but in...