Skip to content

Commit

Permalink
fix bug in selector
Browse files Browse the repository at this point in the history
  • Loading branch information
e111077 committed Mar 4, 2024
1 parent cacf113 commit 8c57577
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ export class LitDevDesignSection extends LitElement {
<select @change=${this.onBackgroundChange}>
${tokens.map(
(token) => html`
<option value=${token} ?selected=${this.foreground === token}>
<option value=${token} ?selected=${this.background === token}>
${token.replace('--sys-color-', '').replaceAll('-', ' ')}
</option>
`
Expand Down

0 comments on commit 8c57577

Please sign in to comment.