Dave Iverson
Dave Iverson
I'm currently having issues with CI because the version of `aws-amplify` installed by `awsmobile init` is different from the version we specify in `package.json`. So when our build server runs...
Looking at the API a little more, it would be awesome if I could pass the AWS Mobile Project ID to `awsmobile pull`. Or pass it to `awsmobile configure aws`...
Great pull request. Testing on Internet Explorer 9, this fails. I get an error on the line ``` javascript event = new Event(eventName); ``` Seems that syntax isn't supported in...
Also seeing issues on IE8: it seems custom events are supported, so "onplay" doesn't work. I'm fixing by using jQuery to trigger events: ``` javascript $(element).trigger(eventName, args); ``` Unfortunately this...
I just started checking out Solid this week and got very confused. So I have lots of UI/UX feedback. But I'm not very clear about the scope of `solid-panes` and...
Here's another one: I thought I was signed in and could edit my profile. But when I try, I get 401 errors. If I check the console, it tells me...
I'm seeing a similar issue. Even something simple like `Topic.plusminus_tally.pluck(:id)` throws an error `Mysql2::Error: Unknown column 'plusminus_tally' in 'order clause':...` I'll have to try @whtt-eric's solution. If it works, we...
I've also observed this issue. We worked around it by using `inputmode="numeric"`, which does seem to resolve the problem. I noticed that typing 100 and then non-numbers (q, m, etc)...
I am also seeing this on a Next.js project. I was hoping to use a dynamic import because this library can't be used with Next SSR.
I believe these two other PRs were attempting to address this: https://github.com/thoughtbot/parity/pull/106 https://github.com/thoughtbot/parity/pull/173