Tags: day8/re-frame-10x
Tags
Use initial-config from devtools, not default-config
Users can configure cljs-devtools via compiler options. For instance:
{...
:builds
{:app
{...
:dev
{:compiler-options
{...
:external-config
{:devtools/config
{:min-expandable-sequable-count-for-well-known-types 1
:features-to-install [:formatters :hints]}}}}}}}
Now, when users configure cljs-devtools, our jsonml
views (aka. "pods") will pick up on that.
For:
#416
[experiment] Fix duplicate keys we passed a seq of two seqs as :children to a v-table. Reagent unpacks the seqs when it renders. Between the two seqs, there are sometimes duplicate keys. @hipitihop caught a warning for this, but I can't repro. Wrapped each inner seq in its own v-table. Ostensibly, this should prevent duplicate keys on child elements. For #412
PreviousNext