Skip to content

Commit

Permalink
Merge branch 'next' into konnorrogers/fix-multiple-identical-spritesh…
Browse files Browse the repository at this point in the history
…eet-icons
  • Loading branch information
claviska authored Sep 23, 2024
2 parents 30248b8 + 91193e2 commit 21aa4b7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions docs/pages/resources/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ New versions of Shoelace are released as-needed and generally occur when a criti

- Fixed a bug in `<sl-icon>` not applying the mutator when loading multiple icons of the same name from a spritesheet. [#2178]
- Fixed a bug in `<sl-select>` that made the suffix slot collide with the clear button [#2145]
- Improved performance of `<sl-popup>` by waiting for the active state before spinning up the positioning library [#2179]

## 2.17.0

Expand Down
2 changes: 1 addition & 1 deletion src/components/popup/popup.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ export default class SlPopup extends ShoelaceElement {
}

// If the anchor is valid, start it up
if (this.anchorEl) {
if (this.anchorEl && this.active) {
this.start();
}
}
Expand Down

0 comments on commit 21aa4b7

Please sign in to comment.