Joachim Lous
Joachim Lous
Awaiting restored support for @JsonProperty/@JsonValue in enums (#3553), I tried to work around the issue using `@Schema` and `allowableValues`, but it turns out this only **adds** to the set of...
This code: ``` java public class Ingredients { public final String eggs="12"; @JacksonXmlProperty(namespace = "urn:produce:fruit") public final String bananas="6"; ... } ``` produces this xml when serialised: ``` xml 1...
kotest 5.4.2 I'm testing some mapping and transformation code, and sometimes there can be some benefits to asserting against external test data in stead of hardcoded inline constants. But this...
### What version of daisyUI are you using? 4.4.23 ### Which browsers are you seeing the problem on? Chrome ### Reproduction URL https://play.tailwindcss.com/VV44TFAzwW https://daisyui.com/components/table/#table-with-visual-elements ### Describe your issue In a...
### What version of daisyUI are you using? 4.4.23 ### Which browsers are you seeing the problem on? Chrome ### Reproduction URL https://play.tailwindcss.com/exLChgw4il ### Describe your issue If my table...
If ObjectMapperWrapper encounters a deserialisation error, it unconditionally dumps the entire json into the message of an IllegalArgumentException, which, if unexpected, will often make its way into the logs. This...
In some template languages (e.g. thymelaf) it is often convenient to introduce extra "wrapper" html elements purely for template control flow reasons, even though you have no actual use for...
The following code should result in a single space between "hello" and "world, but in stead ends up with what looks like at least 3 spaces: hello world
Decimal numbers rendered directly as values (not via #numbers) seem to ignore decimal sign and thousands separator from the locale completely, and always use US format. With #numbers.format I can...
I wish the requiremets for placeholders names matched the ones for js identifiers. My project uses the local language in domain model identifiers, including some local non-ascii letters (æøå). This...