Mat Mannion
Mat Mannion
I'm trying to get around a problem with our dependency tree being truncated as part of a CI task that doesn't have an interactive terminal, so uses the 80-character default...
The default `render` method checks for `this.showCategoryHeader` but is called inside a jQuery each so `this` isn't the Typeahead object. It should be calling `self.showCategoryHeader` or `that.showCategoryHeader` as already defined...
Reproduction case (in Scala, but should be simple enough to make sense): ```scala Using.resource(new FileOutputStream("/tmp/output.pdf")) { os => new PdfRendererBuilder() .useFastMode() .withHtmlContent( """ | | | Garantía. (Las Partes podrán...
The play-json team changed the groupId for the dependency from `org.typesafe.play` to `org.playframework` for 3.x and later (https://github.com/playframework/play-json/releases/tag/3.0.0). As a workaround, it still uses the same package names so this...
Adds support for play-json 3.0 with the new groupId on the dependency. Fixes #91
The play-json team changed the groupId for the dependency from `org.typesafe.play` to `org.playframework` for 3.x and later (https://github.com/playframework/play-json/releases/tag/3.0.0). As a workaround, it still uses the same package names so this...
This is a weird one and I'm pretty sure it's actually a bug with the IntelliJ Scala plugin (raised as https://youtrack.jetbrains.com/issue/SCL-22833/Error-compiling-in-IntelliJ-with-play-brotli-filter-dependency-on-Scala-3.4), but thought I would raise here in case it...
**Describe the bug** When calling `.tBodies` on an `HTMLTableElement`, it currently doesn't return implicit tbody elements. Using the example from [MDN](https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableElement/tBodies): ```html cell one ``` Expected: `table.tBodies` should return an...
**Describe the bug** Prior to v19, CSSStyleRule.selectorText was writable. In v19 it was changed to a getter only, so doesn't follow the rules described in [CSSOM](https://drafts.csswg.org/cssom/#dom-cssstylerule-selectortext) I'm fairly sure that...