Charles Fries
Charles Fries
Apologizes in advance if this is the wrong thread for this--any tips on refactoring something like the following? ```hbs {{yield (hash link-to=(component "link-to" class="class-i-need-on-this-link-to") )}} ``` The catch is that...
PSA: use this addon instead https://github.com/mikkopaderes/ember-cloud-firestore-adapter
Is this what you mean by saving the associated IDs? The code below is what I'm using to save models with a many-to-many rel: ``` this.store.createRecord('club', { title: 'My Club'...
@googlebot I signed it!
Should the `adapterOptions` property on `SnapshotRecordArray` be typed the same way? Currently it is also of type `{}`
This should be fixed by https://github.com/DefinitelyTyped/DefinitelyTyped/pull/60742
I'm also seeing this issue after upgrading to the 6 beta in an existing app. What's interesting is that I don't see the error with a simple reproduction: `ember new...
Does this trace help? I can confirm I don't have any references to `_locale` in my own code, nor do I call `intl.setLocale()`.   ![Screenshot...
Figured it out. We need to call `setLocale` before any `t` helpers in templates are invoked to prevent the double mutation, a good place is probably the `ApplicationRoute` constructor. This...
If you have a lot of integration tests, you can setup an instance initializer and call `setLocale` from it for the time being so you don't have to call `setupIntl`...