Skip to content
This repository has been archived by the owner on Apr 25, 2018. It is now read-only.

Uncaught TypeError: Cannot read property 'next' of null #110

Open
miguelmota opened this issue May 25, 2016 · 1 comment
Open

Uncaught TypeError: Cannot read property 'next' of null #110

miguelmota opened this issue May 25, 2016 · 1 comment

Comments

@miguelmota
Copy link

miguelmota commented May 25, 2016

export default function App() {
 const content = Rx.Observable.create(obs => {
    obs.next('foo');
    setTimeout(() => obs.next('bar'), 10); // error happens here
  });

  return (
    <div>
      {content}
    </div>
   );
}

error line yolk/src/VirtualComponent.js

 next._props$.next(next._props)
@miguelmota miguelmota changed the title dashdeps.js:12 Uncaught TypeError: Cannot read property 'next' of null Uncaught TypeError: Cannot read property 'next' of null May 25, 2016
@garbles
Copy link
Owner

garbles commented May 25, 2016

Can you please submit a pull request with a failing spec

Sent from my iPhone

On May 25, 2016, at 12:29 PM, Miguel Mota [email protected] wrote:

export default function App() {
const content = Rx.Observable.create(obs => {
obs.next('foo');
setTimeout(() => obs.next('bar'), 10); // error happens here
});

return (


{content}

);
}

You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants