diff --git a/docs/getting-started/changelog.md b/docs/getting-started/changelog.md index 9d5f0593..70a665f2 100644 --- a/docs/getting-started/changelog.md +++ b/docs/getting-started/changelog.md @@ -11,6 +11,7 @@ _During the beta period, these restrictions may be relaxed in the event of a mis - Fixed a bug where link buttons could have incorrect `target`, `download`, and `rel` props - Fixed `aria-label` and `aria-labelledby` props in `sl-dialog` and `sl-drawer` - Fixed `tabindex` prop in `sl-menu` +- Fixed a bug in `sl-select` where tags would always render as pills ## 2.0.0-beta.32 diff --git a/src/components/select/select.ts b/src/components/select/select.ts index 20b608fb..23ab72db 100644 --- a/src/components/select/select.ts +++ b/src/components/select/select.ts @@ -326,7 +326,7 @@ export default class SlSelect extends LitElement { exportparts="base:tag" type="info" size=${this.size} - pill=${this.pill} + ?pill=${this.pill} clearable @click=${this.handleTagInteraction} @keydown=${this.handleTagInteraction}