Max Bergmark
Max Bergmark
@friendlymatthew All good suggestions, I fixed them immediately. I also noticed that #127 causes conflicts with my changes. I changed my code to also use `key()` instead of `code()`, and...
@friendlymatthew Good suggestion, I'll clean it up. A quick note: I got a bit worried that I'd broken something: Due to #127, there might need to be some updates to...
@friendlymatthew Sounds like a good plan, it's better practice to have separate PRs.
@friendlymatthew I reverted the past two commits
Thank you for approving this! If you merge it (I don't have write access) you could re-use the logic for using either the key or code: ```rust #[cfg(not(feature = "ssr"))]...
I did some additional testing by enabling the "debug" option for the crate. From there, it is quite apparent what's happening. Here, I started by pressing arrow up, and then...
Quick update: I think I have a fix for the problem. I just replaced the existing hashmap containing all keypresses with a struct: ```rust #[derive(Debug, Default, Clone)] #[cfg_attr(feature = "ssr",...
I created a PR, and tested the functionality locally using the sudoku app I linked above. From my testing, all of these things work as expected: 1. Single key presses...
Good suggestions! I'll try them out, and see what the outcome is.
@gbj As you suspected, this doesn't sound like it is a Leptos problem, but more of a Tailwind problem. Still, I would argue that it's a bit confusing that adding...