Just like we sometimes override options in the generic table actions component, we're going to do the same thing with the cards table actions.
9 lines
179 B
Ruby
9 lines
179 B
Ruby
class Admin::Widget::Cards::RowComponent < ApplicationComponent
|
|
attr_reader :card, :options
|
|
|
|
def initialize(card, **options)
|
|
@card = card
|
|
@options = options
|
|
end
|
|
end
|