We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e7ead01 commit 3a7e08cCopy full SHA for 3a7e08c
2 files changed
.changeset/heavy-shrimps-judge.md
@@ -0,0 +1,5 @@
1
+---
2
+"bits-ui": patch
3
4
+
5
+fix(Select): virtualization scroll issues
packages/bits-ui/src/lib/bits/select/select.svelte.ts
@@ -1011,7 +1011,7 @@ export class SelectItemState {
1011
watch(
1012
() => this.mounted,
1013
() => {
1014
- if (!this.mounted) return;
+ if (!this.mounted || this.root.highlightedValue) return;
1015
this.root.setInitialHighlightedNode();
1016
}
1017
);
0 commit comments