From dcc962a8fddf4efb679e918df5b18e98e2a96780 Mon Sep 17 00:00:00 2001 From: Ahmed Ejaz Date: Wed, 3 Jan 2024 16:02:07 +0500 Subject: [PATCH] 11923: fix lint issues --- app/components/multiple_checked_select_component.rb | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/app/components/multiple_checked_select_component.rb b/app/components/multiple_checked_select_component.rb index 4cc95bc695..ec3ce5cdde 100644 --- a/app/components/multiple_checked_select_component.rb +++ b/app/components/multiple_checked_select_component.rb @@ -1,7 +1,9 @@ # frozen_string_literal: true class MultipleCheckedSelectComponent < ViewComponent::Base - # @param id [String] uniquely identifies the MultipleCheckedSelect (mcs) field. '_mcs_field' will be appended + # @param id [String] + # Uniquely identifies the MultipleCheckedSelect (mcs) field. + # '_mcs_field' will be appended to the given ID to form the complete ID. def initialize(id:, name:, options:, selected:) @id = "#{id}_mcs_field" @name = name