james-em

Results 23 comments of james-em

@jakobrosenberg This is a very quick fix. I believe because of this declaration: https://github.com/roxiness/routify/blob/next/package.json#L6 ``` "svelte": "lib/runtime/index.js", ``` you just need to add here: https://github.com/roxiness/routify/blob/next/package.json#L33 ``` "svelte": "./lib/runtime/index.js", ``` which...

@jakobrosenberg Thanks a lot! The warning is gone (Testing v3 here) you can close the issue :) Edit: https://publint.dev/@roxi/[email protected] ![Capture d’écran, le 2024-02-29 à 08 39 01](https://github.com/roxiness/routify/assets/63726983/ce2576c1-f960-471c-a920-2190e95c3932) Appears to be...

@reinink This can make sense if you change your defaults to something that is equal to the current form data. The reset() method already causes to revalidate isDirty so it...

Thanks for the quick response! :) > Not wanting to start a meta-discussion about the meaning of "DRY", but having a single `render` line inside each action doesn't strike me...

> So you just want to call `UserBlueprint.render(@users)` in a view? Isn't that already possible? Yes and also yes already possible within an `ActionController::Base` controller but not `ActionController::API` controller unless...

Same here nothing is happening. ``` const result = await signInWithBrowser(); ``` This method never resolves nor it does display any kind of warning or error. I'm using Expo SDK...

To add more information, using the method `signIn({ username: ..., password: ...})` I was able to get some output. The authentication is successful, but i'm still getting an exception despite...

> The operational challenge of adding a default is it requires a 2-stage deploy (add a nil column, then come back and add a default)... at least until PG 11...

I have put some effort investigating as well and here is what I discovered. I used @elalemanyo example here https://codepen.io/elalemanyo/pen/JjargEP?editors=0011 When dragging an item, the node moves around in the...

Here is a fixed exemple of @elalemanyo https://codepen.io/James-St-Pierre/pen/ZEZZqew PR: https://github.com/stimulus-components/stimulus-sortable/pull/28