Fixed missing parameter usage
Signed-off-by: Julien Eluard <julien.eluard@gmail.com>
This commit is contained in:
parent
ceeeebb001
commit
e66452ba4b
|
@ -394,7 +394,7 @@
|
|||
(defn text [o & children]
|
||||
(if (map? o)
|
||||
(into [react/text o] (map wrap-text-child children))
|
||||
(into [react/text o] (map wrap-text-child children))))
|
||||
(into [react/text {} o] (map wrap-text-child children))))
|
||||
|
||||
(defn- wrap-view-child [child]
|
||||
(if (vector? child) child [text {} child]))
|
||||
|
|
Loading…
Reference in New Issue