Philip Munksgaard
Philip Munksgaard
If I start editing the percentage for "You", I can use Shift+Tab to move backwards to the name field and change "You" to something else. I only now realize that...
Thank you for your work on this @deemp. I'm currently swamped with other work, but I'll try to re-engage with this issue sometime next week.
I've also run into this (multiple times). It seems like the caching of prebuilt nifs can also cause problems when building a nix flake.
It should be noted that I'm unsure if this is intended behavior. If so, I couldn't find it documented anywhere, so that might be worth considering :-)
Thanks for explaining, I kind of expected that :slightly_smiling_face: My understanding of how the change-tracking in LiveView works is not 100% yet, but it's getting better every time I run...
You can fix this by wrapping the node name in single quotes and adding a dot at the end: ``` nix run github:serokell/deploy-rs -- -d '.#"chwei01.serv0r.xyz".' ```
I ended up ignoring errors in TablePlugin like this: ```typescript tools: { table: { // @ts-expect-error TablePlugin doesn't have proper types class: TablePlugin, }, }, ```
For the record, I've created a [Nix flake](https://github.com/Munksgaard/pganalyze-collector) that makes it easy to install the collector with Nix.
[This](https://github.com/phoenixframework/phoenix_live_view/blob/ea2c6f06441b5c26cbfb542a6c4866ef978aeb8f/assets/js/phoenix_live_view/view.js#L290) is the function that's logging the error: ```js withinTargets(phxTarget, callback, dom = document, viewEl){ // in the form recovery case we search in a template fragment instead of //...
By setting `liveSocket.enableLatencySim(1000)`, the error goes away. I suspect there is some kind of race between tearing down the `LiveComponent` inside the `live_select` and navigating to the new page.