Eric

Results 5 comments of Eric

I'm running in to `belongsTo` relationships as well on `1.6.6`. Worked fine on `1.6.0`. The model is very simple: ``` // keyboard/model.js export default DS.Model.extend({ title: attr('string'), photo: belongsTo('photo') });...

I ended up using a `hasMany` and just using `{model}.firstObject` for the moment. Granted you end up peppering your code with `this.get('someModel').clear()` and what not. I can look at issuing...

I was getting this error as well. This is a version locking issue. Versions are mismatching and creating errors. Remove all the `^` and `>=` in the versions of the...

I'm also seeing this issue with dynamic rendering in a WebvView (via `BlobProvider`). I get into an infinite loop with: ``` { console.log('render', pageNumber, totalPages); return `${pageNumber} / ${totalPages}`; }}...

I tried to upgrade to `native-navigation` 0.2.2 via: ```yarn add git+https://github.com/airbnb/native-navigation.git``` but it didn't seem to help. my specific errors after doing such: ``` ** BUILD FAILED ** The following...