Andre Rabold
Andre Rabold
Thanks for this patch. I'll check it out, too. 2 comments though: - Is the `Access-Control-Allow-Origin: *` header really necessary for you? In my opinion the domain on which the...
Just wanted to update you that this works perfectly on IE9, too.
That's basically as far as I came, too. But I'm trying to dig deeper into it today and can hopefully submit a pull-request soon.
It doesn't load the html of the widgets. I'm digging through the code right now... somewhat hard for me to understand the logic as I'm new to most of the...
Okay, found it. `this.constructor.name` doesn't exist in IE and returns an `undefined`. This makes everything else fail badly. I'll submit a pull-request as soon as I got everything cleaned up...
Here you go: https://github.com/fabiocaseri/dashing-js/pull/15 -- probably you should test that yourself, @adrianlee.
Querying for relations seem to work well when using predicates: ```ts const author = await DataStore.query(Author, authorID); const books = await DataStore.query(Book, book => book.authorID("eq", authorID)); ``` This, at least...
It's noteworthy that I'm disabling annotations in my `.babelrc` to avoid any runtime performance penalties (not sure if there are any?). It still works perfectly fine if I define `MySchema`...
Thanks. Indeed I missed that update.
i was looking into source map upload originally but it doesn't seem to be possibly in Sentry yet. It would be a great feature and shouldn't be difficult to implement...