Skip to content

Commit 7619a45

Browse files
authored
chore: fix incorrect condition in select dev page (#9569)
1 parent 6f101cc commit 7619a45

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dev/select.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ <h2 class="heading">States</h2>
6969
import { html, render } from 'lit';
7070

7171
document.querySelectorAll('vaadin-select').forEach((select) => {
72-
if ((select.id = 'custom')) {
72+
if (select.id === 'custom') {
7373
select.renderer = (root) => {
7474
render(
7575
html`

0 commit comments

Comments
 (0)