re-frame

https://github.com/Day8/re-frame/blob/master/docs/README.md https://github.com/Day8/re-frame/blob/master/docs/External-Resources.md
knubie 2020-09-15T13:59:51.032500Z

Thanks for sharing @isak, that’s really helpful.

knubie 2020-09-15T14:00:51.032700Z

I think I may have found a mistake though, on line 45, the e variable is shadowing the e from above, which caused some funky results with the input signals

isak 2020-09-15T14:39:45.033100Z

Np. Oh right, because the input-signals gets called with the internal event vector on 47 and 56. Does that explain the problem you saw?

knubie 2020-09-15T14:44:02.033400Z

Yep, they were getting called with [::computation-id->sub query-id] (the internal event vector)

isak 2020-09-15T14:46:01.033900Z

Will fix, thanks

knubie 2020-09-15T14:57:52.034200Z

👍