Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test(combobox): fix form-associated test #8718

Merged
merged 1 commit into from
Feb 9, 2024
Merged
Changes from all commits
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
Original file line number Diff line number Diff line change
Expand Up @@ -1632,7 +1632,7 @@ export class Combobox

return (
this.showingInlineIcon && (
<span class="icon-start">
<span class="icon-start" key="selected-placeholder-icon">
<calcite-icon
class="selected-icon"
flipRtl={this.open && selectedItem ? selectedItem.iconFlipRtl : placeholderIconFlipRtl}
Expand All @@ -1647,7 +1647,7 @@ export class Combobox
renderChevronIcon(): VNode {
const { open } = this;
return (
<span class="icon-end">
<span class="icon-end" key="chevron">
<calcite-icon
icon={open ? "chevron-up" : "chevron-down"}
scale={getIconScale(this.scale)}
Expand Down Expand Up @@ -1692,6 +1692,7 @@ export class Combobox
[CSS.selectionDisplayFit]: fitSelectionDisplay,
[CSS.selectionDisplaySingle]: singleSelectionDisplay,
}}
key="grid"
ref={this.setChipContainerEl}
>
{!singleSelectionMode && !singleSelectionDisplay && this.renderChips()}
Expand Down
Loading