Skip to content

Commit

Permalink
Fixed problem in components that makes CLJ operation rendering not work
Browse files Browse the repository at this point in the history
  • Loading branch information
awkay committed Jun 24, 2024
1 parent 6401d60 commit 317ed58
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/main/com/fulcrologic/fulcro/components.cljc
Original file line number Diff line number Diff line change
Expand Up @@ -746,12 +746,12 @@
(let [qid (query-id class qualifier)]
(with-meta
(fn element-factory [props & children]
(let [key (:react-key props)
key (cond
key key
keyfn (keyfn props))
parent *parent*
app #?(:cljs *app* :clj {})]
(let [key (:react-key props)
key (cond
key key
keyfn (keyfn props))
parent *parent*
app *app*]
(if app
(let [ref (:ref props)
ref (cond-> ref (keyword? ref) str)
Expand Down

0 comments on commit 317ed58

Please sign in to comment.