File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
ruby/hyper-component/lib/hyperstack Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -78,13 +78,13 @@ def component_will_receive_props(next_props)
7878 # need to rethink how this works in opal-react, or if its actually that useful within the react.rb environment
7979 # for now we are just using it to clear processed_params
8080 observing ( immediate_update : true ) { run_callback ( :before_receive_props , next_props ) }
81- @_receiving_props = true
81+ @__hyperstack_component_receiving_props = true
8282 end
8383
8484 def component_will_update ( next_props , next_state )
8585 observing { run_callback ( :before_update , next_props , next_state ) }
86- params . _reset_all_others_cache if @_receiving_props
87- @_receiving_props = false
86+ params . _reset_all_others_cache if @__hyperstack_component_receiving_props
87+ @__hyperstack_component_receiving_props = false
8888 end
8989
9090 def component_did_update ( prev_props , prev_state )
You can’t perform that action at this time.
0 commit comments