Skip to content

Commit

Permalink
fix: strip data-controller attribute (#3606)
Browse files Browse the repository at this point in the history
* fix: strip data-controller attribute

* wip

* keep data component if existent

* date time spec

---------

Co-authored-by: Paul Bob <[email protected]>
Co-authored-by: Paul Bob <[email protected]>
  • Loading branch information
3 people authored Jan 27, 2025
1 parent 0662371 commit b12b3f9
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/components/avo/panel_component.rb
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,6 @@ def classes
private

def data_attributes
@data.merge({"panel-index": @index})
@data.merge(component: @data[:component] || self.class.to_s.underscore, "panel-index": @index)
end
end
2 changes: 1 addition & 1 deletion lib/avo/concerns/has_resource_stimulus_controllers.rb
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def get_stimulus_controllers

controllers << self.class.stimulus_controllers

controllers.join " "
controllers.reject(&:blank?).join " "
end

def stimulus_data_attributes
Expand Down
2 changes: 2 additions & 0 deletions spec/system/avo/date_time_fields/date_time_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -197,6 +197,7 @@

close_picker
save
wait_for_loaded

expect(show_field_value(id: :started_at)).to eq "January 02, 2000 17:17:17 UTC"
end
Expand Down Expand Up @@ -256,6 +257,7 @@

close_picker
save
wait_for_loaded

expect(show_field_value(id: :started_at)).to eq "January 02, 2000 17:17:17 UTC"
end
Expand Down

0 comments on commit b12b3f9

Please sign in to comment.