scf37
scf37
https://jsfiddle.net/uta364yf/15/ `X` button should not appear.
I believe the cause is that `value` is kind of required after latest changes but fake placeholder data object does not contain it. Adding `value: ''` to lines like `var...
Yes, at least that's how it is used to work. Look at the code above - it hides deselect button if nothing selected.
Found a fix: https://jsfiddle.net/4yvnupqc/1/ So it is probably documentation issue (or me misreading documentation)
It is hard to tell what is the best solution. slim-select used to work before without `value` field so it is breaking change. I can suggest either filling `value` from...
Implementation that properly converts nested scopes to dot-separated property names: https://github.com/scf37/config3/blob/master/src/main/scala/me/scf37/config3/Config3.scala#L272
On Scastie I tested 3.0, 3.1, 3.2, 3.3.0, 3.3.9
It fails on 2.13.8. Also, originally it hung up in large project combined with other `Resource`-s. All those `unsafeRunSync`-s are just to reproduce the bug. (Un)fortunately, minimal example within sbt...
Probably can be 'fixed' by using the same implementation for IOApp and unsafeRunXYZ. Current situation of completely different implementations for seems to be identical tasks is weird.
0.25 - same behavior. I believe finch should either sanitize paths properly or do not sanitize them at all. E.g. `/a/../b` should produce the same result as `/a/%2E%2E/b` - either...