Skip to content

Commit

Permalink
Merge branch 'next' of https://github.com/shoelace-style/shoelace int…
Browse files Browse the repository at this point in the history
…o next
  • Loading branch information
claviska committed Jan 2, 2025
2 parents f0c93d0 + 81e94f2 commit 6761fdc
Showing 1 changed file with 13 additions and 7 deletions.
20 changes: 13 additions & 7 deletions src/components/option/option.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,8 @@ export default class SlOption extends ShoelaceElement {
// @ts-expect-error - Controller is currently unused
private readonly localize = new LocalizeController(this);

private isInitialized = false;

@query('.option__label') defaultSlot: HTMLSlotElement;

@state() current = false; // the user has keyed into the option, but hasn't selected it yet (shows a highlight)
Expand All @@ -57,13 +59,17 @@ export default class SlOption extends ShoelaceElement {
}

private handleDefaultSlotChange() {
// When the label changes, tell the controller to update
customElements.whenDefined('sl-select').then(() => {
const controller = this.closest('sl-select');
if (controller) {
controller.handleDefaultSlotChange();
}
});
if (this.isInitialized) {
// When the label changes, tell the controller to update
customElements.whenDefined('sl-select').then(() => {
const controller = this.closest('sl-select');
if (controller) {
controller.handleDefaultSlotChange();
}
});
} else {
this.isInitialized = true;
}
}

private handleMouseEnter() {
Expand Down

0 comments on commit 6761fdc

Please sign in to comment.