Closed
Description
before_mount { foo = Model.new(attr1: 'hello')
...
DIV { foo.belongs_to_some_bar&.bar_attribute }
...
on(:click) { foo.belongs_to_some_bar = a_bar } # should rerender the div but does not
if we change the new to Model.new(attr1: 'hello', belongs_to_some_bar: nil)
it works
This was found on hyperloop legacy so perhaps its fixed?