Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 1 addition & 4 deletions gem/lib/ruby_ui/combobox/combobox_trigger.rb
Original file line number Diff line number Diff line change
Expand Up @@ -52,10 +52,7 @@ def icon
stroke_linejoin: "round"
) do |s|
s.path(
d: "m7 15 5 5 5-5"
)
s.path(
d: "m7 9 5-5 5 5"
d: "m6 9 6 6 6-6"
)
end
end
Expand Down
3 changes: 1 addition & 2 deletions gem/test/ruby_ui/combobox_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -187,8 +187,7 @@ def test_combobox_badge_trigger_no_chevron

def test_combobox_trigger_chevron_down
output = phlex { RubyUI.ComboboxTrigger(placeholder: "Pick") }
assert_match(/m7 15 5 5 5-5/, output)
assert_match(/m7 9 5-5 5 5/, output)
assert_match(/m6 9 6 6 6-6/, output)
end

def test_combobox_trigger_sets_placeholder_data
Expand Down
Loading