Matt Clough
Matt Clough
@justin808 I'm having this same issue on a fresh Rails app. Here's the repo: https://github.com/mattclough1/react-on-rails-demo and to illustrate @Overload119's point, I used this in a different repo to resolve the...
I don't remember if I got to this place by my own mistakes, but I see a few things: 1. `src/index.ts` just says `export * from './components'` 2. There is...
@christian-bromann thanks! Yeah the `dist-custom-elements` documentation is pretty clear. Just reading through the `dist` docs again so I can summarize some points of confusion: 1. `collectionDir`: the purpose of this...
Having a similar issue where I want to narrow the `role` attribute to a union type, but it conflicts with `HTMLElement`'s `role: string`, but it feels like something a custom...
> As far as I can tell, this is the correct behavior. The click handler is evaluated on click, not at the time of rendering the template. So the data...
I think I've got a decent workaround for this. Went from: ```ruby #{I18n.t(timezone.name, scope: :timezones, default: timezone.name)} ``` to ```ruby #{I18n.t('timezones')[timezone.name.to_sym()] || timezone.name rescue timezone.name} ``` Or something of that...