omcljs / om

ClojureScript interface to Facebook's React

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Issue upgrading to 0.6.0

sthomp opened this issue · comments

I just tried out 0.6.0 but am getting the following error:

Uncaught TypeError: Cannot read property 'null' of undefined

Here is the stack trace:

cljs.core.cljs:112
om.core.cljs:112
om.core.cljs:745
om.core.cljs:745

My application is a trivial 'hello world' app and the exception is being triggered from (om/root). Downgrading back to 0.5.0 fixes the problem.

Do you have a minimal reproducible case? Otherwise I'm inclined to close this. Thanks!

I put my code that reproduces this in a repo:
https://github.com/sthomp/om-issue

@sthomp you are not specifying the correct version of ClojureScript, you need to specify ClojureScript 0.0-2173

Ah okay, yeah upgrading to 0.0-2173 fixed it. Thanks!