paulodeon
paulodeon
```ruby aasm column: :status, whiny_transitions: false do state :requested, initial: true state :approved event :approve, after: :after_approve do transitions from: :requested, to: :approved end end def after_approve raise "This is...
I have a use case where I would like to add to the gon based on variables that are set in the controller/view - specifically the rails layout being used
It seems that prop changes to Container components don't trigger a redraw while adding and removing components does trigger a redraw. See below a minimal test case: Clicking the button...