You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Oct 19, 2018. It is now read-only.
class Foo < Hyperloop::Component
collect_all_other_params_as :opts
...
end
...
class Test < Hyperloop::Component
after_mount do
every(1) { force_update! }
end
render do
Foo(time: Time.now)
end
end
The value of params.opts[:time] will never change.
The problem is that the collected props are kept in an instance variable that needs to be reset when new props arrive.