mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-11 10:06:53 +08:00
10 lines
331 B
Ruby
10 lines
331 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Reports
|
|
class MultiCheckboxInputComponent < TemplateValueComponent
|
|
def initialize(report:, name:, label:, placeholder: nil, editing: true, items: {})
|
|
super(report: report, name: name, label: label, placeholder: placeholder, editing: editing)
|
|
@items = items
|
|
end
|
|
end
|
|
end
|