2022-09-08 11:25:39 +02:00
|
|
|
class EditableChamp::RepetitionComponent < EditableChamp::EditableChampBaseComponent
|
2023-04-13 15:09:24 +02:00
|
|
|
def legend_params
|
|
|
|
@champ.description.present? ? { describedby: dom_id(@champ, :repetition) } : {}
|
|
|
|
end
|
|
|
|
|
|
|
|
def notice_params
|
|
|
|
@champ.description.present? ? { id: dom_id(@champ, :repetition) } : {}
|
|
|
|
end
|
2022-08-12 10:45:04 +02:00
|
|
|
end
|