fix handling of subvector paths in cljs
This commit is contained in:
parent
3536e3c461
commit
e7abb2b538
2 changed files with 2 additions and 1 deletions
|
|
@ -2,6 +2,7 @@
|
|||
|
||||
* Eliminate reflection warning
|
||||
* Bug fix: Fix inline compiler symbol handling so class references can be used as constants within paths
|
||||
* Bug fix: Fix handling of subvector paths in cljs
|
||||
|
||||
## 1.1.1 - 2018-04-23
|
||||
|
||||
|
|
|
|||
|
|
@ -177,7 +177,7 @@
|
|||
(coerce-path (vec this))))
|
||||
#?(:cljs cljs.core/Subvec)
|
||||
#?(:cljs (coerce-path [this]
|
||||
(coerce-path (vec this))))
|
||||
(coerce-path (into [] this))))
|
||||
|
||||
#?(:clj Object :cljs default)
|
||||
(coerce-path [this]
|
||||
|
|
|
|||
Loading…
Reference in a new issue