push
circleci
0 of 33 new or added lines in 1 file covered. (0.0%)
9374 existing lines in 213 files now uncovered.47 of 9753 relevant lines covered (0.48%)
0.01 hits per line
| 1 |
# frozen_string_literal: true
|
|
| 2 |
|
|
|
UNCOV
3
|
class MultiselectComboboxComponent < ViewComponent::Base |
× |
|
UNCOV
4
|
def initialize(label:, dom_id:, values:, field_name:) |
× |
|
UNCOV
5
|
@label = label
|
× |
|
UNCOV
6
|
@dom_id = dom_id
|
× |
|
UNCOV
7
|
@values = values
|
× |
|
UNCOV
8
|
@field_name = field_name
|
× |
|
UNCOV
9
|
@listbox_id = "#{dom_id}-list" |
× |
|
UNCOV
10
|
@hidden_select_id = "#{dom_id}-select" |
× |
|
UNCOV
11
|
end
|
× |
|
UNCOV
12
|
end
|
× |