Lukas Schlüter
Lukas Schlüter
So, this is some very specific issue that the `gobuffalo` repo ran into. ### The problem #### Text explanation In fact, I'm even having some difficulties describing it in an...
Partials in html `` tags don't get escaped, possibly breaking JS code. ```html Some HTML with JS console.log("") ``` ``` // _someText.txt Text with characters "breaking" the JS 'code' ```...
Currently, the docs for generating and destroying db models (https://gobuffalo.io/en/docs/db/models/) include the following paragraph: > You can remove generated model by running: > `$ soda destroy model [name]` > Or...
We should try to automate the generation of templates/docs/releases.md It's a quite repetitive action to add the new releases which doesn't require much thought. As getting and transforming the release...
Dropping the `RemoveEventHandler` returned by [`ElementExt::on`](https://docs.rs/leptos/latest/leptos/prelude/trait.ElementExt.html#tymethod.on) also drops the closure, which invalidates the event listener. Example code: ```rust let button_ref: NodeRef = NodeRef::new(); button_ref.on_load(move |btn| { let cb = btn.on(leptos::ev::click,...
This enables the use of uuids (and uuid-like values) as map keys. Previously, deserialization would fail if the uuid started with a digit (while uuids starting with letters worked fine)....