Phillip Baird
Phillip Baird
More info... The docs example contains an error. The query parameters are being returned in searchParams not searchParams.query. Passing searchParams as the key fixes the initial page load but subsequent...
Would Vec.retain() be a simpler way to implement delete_todo?
It looks like the bump to winit on 25th October is where the problem starts. [cf4c09e](https://github.com/lapce/floem/commit/cf4c09ecd39748ea660f3915f63a5de5b5ee9d72) - is the last commit that works for me [d7a9356](https://github.com/lapce/floem/commit/d7a9356389a2b6dec779bdac062a513ed482f6ed) - bumps winit -...
Have discovered the problem can be worked around by supplying a WindowConfig with a custom window size. ```rust fn main() { let window_config = WindowConfig::default().size(Size { width: 1920.0, height: 1080.0,...
This is what I'm using with Leptos projects. Mostly works. Grabbed from a post on the Leptos Discord server. https://discord.com/channels/1031524867910148188/1114669318832132157/1245624733169487925 Am not sure why Zed requires the experimental config. ```...
Good timing. I was just about to open an issue for this myself. My fork has a [0.7 branch](https://github.com/phillipbaird/leptos-hotkeys/tree/leptos_0.7) that's ready for testing. Happy to create a pull request to...
@friendlymatthew I do not see how this can be broken into smaller PRs. This is the minimum change in order for the crate to compile and not be broken. Certainly,...
Here are 3 ideas off the top of my head... 1. Due to the historic use of [natural keys](https://en.wikipedia.org/wiki/Natural_key) as primary indexes, some users have come to expect all identifiers...
"mark duplicate records" indicates a state change which requires a command/event pair. "users can decide" suggests a read model (aka projection) from the above events in order to make the...
The approach described on the dcb.events website is exactly the same as option 3 in my original reply. dcb.events is written by the folks developing the AXON Java framework. The...