maciek50322

Results 4 comments of maciek50322

This happens because changing `person1.dogs`, causes changed properties to unwrap, so when pushing new dog with `trainer: person1` , the `dogs[x].trainer` is being unwrapped. If unwrapper meets proxy, it just...

So actually I checked, and my suggestion to change proxy trap wouldn't work. To make it work the proxy would need to keep track of top-level mutable to exclude it...

You can make it work with either: 1. Update `state.color` to different value, so that the `` gets notified of update, like so: ```ts const state = createMutable({ color: undefined,...

> https://playground.solidjs.com/anonymous/70df1286-3b10-48c6-9b5a-c7c2ae93d018 Apparently not.. value has to always be reset after options change. Interesting thing here is that it won't change even if you do ```tsx select.value = Color.Red ```...