We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5dcf302 commit d65f524Copy full SHA for d65f524
1 file changed
.dev/tracker.md
@@ -262,6 +262,12 @@ existing Form-2 components are detected and preserved.
262
263
All previously tracked issues (I1–I6) have been resolved. See `archive/bugs-fixed.md` for details.
264
265
+### I7: `into` 3-arity (transducer) silently returns empty collection
266
+
267
+`(into [:div] (map f) coll)` produces `[:div]` with no children. The 2-arity form
268
+`(into [:div] (map f coll))` works correctly. Root cause: transducer protocol path
269
+in `into` not fully implemented. Workaround: use 2-arity `into` or `(apply conj target (map f coll))`.
270
271
## Workarounds (Platform Constraints)
272
273
- **defc names require hyphen**: Custom Element names require a hyphen (web standard). `(defc counter ...)` fails — use `(defc sample-counter ...)`.
0 commit comments