scf37
scf37
**Describe the bug** select with allowDeselect=true does not hide X button on click because `this.main.selected()` returns `undefined` instead of `''` **Screenshots** 
**Describe the bug** If ajax callback returns "text" without "value", HTML renders with `value="undefined"` **Screenshots** 
cats-effect 3.3.9 In my project, second unsafeRunSync always hangs. When reproducing on Scastie, it either passes or hangs on first unsafeRunSync. ```scala import cats.effect.std.Dispatcher import cats.effect.{Async, IO, Resource} import cats.effect.unsafe.implicits.global...
Having: sbt plugin project with `crossSbtVersions := Vector("0.13.17", "1.1.0")`, `sbt.version=1.1.0` Do: run sbt 'release cross with-defaults' Expected: released and deployed plugins for sbt 0.13 and and sbt 1.0 Actual: released...
Given route: ``` get(paths[String]) { p: Seq[String] => Ok(p.toString) } ``` `GET /../secret` prints `"List(secret)"` but `GET /%2E%2E/secret` prints `"List(.., secret)"` and `GET /%2F/etc/passwd` prints `"List(/, etc, passwd)"` This can...
e.g. `conn.setReadOnly(true); conn.setAutoCommit(false); ` Current implementatio of tx.begin() always sets connection readOnly to false.
In theory, files could be excluded using following construct: ` scalastyleSources := scalastyleSources in dao.value .map(PathFinder.apply _) .reduceLeft[PathFinder]((a, b) => a +++ b) .**("*") .filter( ! _.getAbsolutePath.contains("src/main/scala/my/generated/metadata")).get ` but -...
One of strong points of scalatags is ability to traverse, extend and transform assembled model before rendering. Unfortunately it is hacky right now - not everything is public and not...
- implicit priority conflict - implementation requires annotation https://scastie.scala-lang.org/FOj9rxDdSrWll0fx93QExA
Make better error message for this case Input: `{}` Class: `case class Request(text: String)` Error text: Tethys: `Illegal json at '[ROOT]': Can not extract fields from json'text']` Jackson: `text: field...