mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-28 21:07:16 +00:00
11 lines
246 B
Ruby
11 lines
246 B
Ruby
# frozen_string_literal: true
|
|
|
|
class OutOfStockModalComponent < ModalComponent
|
|
def initialize(id:, variants: [], redirect: false)
|
|
super(id:, modal_class: "medium", instant: true)
|
|
|
|
@variants = variants
|
|
@redirect = redirect
|
|
end
|
|
end
|