lib/voom/presenters/dsl/components/lists/action.rb in voom-presenters-0.1.7 vs lib/voom/presenters/dsl/components/lists/action.rb in voom-presenters-0.1.8

- old
+ new

@@ -59,10 +59,10 @@ end def button(text=nil, **attribs, &block) return @button if locked? @action_type = :button - @button = Button.new(text: text, parent: self, context: context, **attribs, &block) + @button = Components::Button.new(text: text, parent: self, context: context, **attribs, &block) end end end end end