mirror of
https://github.com/edcommonwealth/sqm-dashboards.git
synced 2026-03-07 21:48:16 -08:00
9 lines
170 B
Ruby
9 lines
170 B
Ruby
class DataItemPresenter
|
|
def initialize(measure_id:)
|
|
@measure_id = measure_id
|
|
end
|
|
|
|
def data_item_accordion_id
|
|
"data-item-accordion-#{@measure_id}"
|
|
end
|
|
end
|