Enzo Caceres

Results 14 comments of Enzo Caceres

Hi, I was having the same problem myself. And as far as I can tell, even with a look at the code, it is not possible. Even changing by hand...

Sorry for the late answer. Yes you are right. I am on Windows 10, using a second 2560x1440 monitor with 125% scale, and the problem is when the application is...

This is the thing. I need to use SSR. The HTML Spec does not allow a `div` to be inside an `anchor` tag, and will auto-close directly when encountering one....

The [spec](https://html.spec.whatwg.org/multipage/server-sent-events.html) don't seem to have anything regarding event names. And since the response header has already been committed, there is no way of "changing" the status of the response....

The gap still seems to be here: ![image](https://user-images.githubusercontent.com/7386242/215742005-75e225de-991a-4eb9-b7f8-e9e1b8e7441a.png) But now the mouse will always "click on it". So its not an issue anymore? Thanks a lot for your update @mukunku

In the meantime, that can be bypassed by testing the double value directly: ```java @Test void testNaN() { assertThat(OptionalDouble.of(Double.NaN).getAsDouble()).isNaN(); } ```

A solution could be to add `isNaN()` to match `AbstractDoubleAssert`'s API. (and add `isNotNaN()` too?) This would prevent breaking changes. EDIT: typos

I think having both `isNaN()` and `isNotNaN()` would be best as there do not seems to be a method for the opposite of `hasValue(...)`. Currently this passes: ```java assertThat(OptionalDouble.of(Double.NaN)) .isNotEqualTo(Double.NaN);...

They seems to have changed the way they store the themes, and so the theme builder is not working anymore... In the meantime, you can "update" the color by hand:...

I was having the same issues. Its not an official fix, but here is how you can fix it. You must downgrade webpack to v4 and postcss to v7. ```json...