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 4cc879f commit c641624Copy full SHA for c641624
src/cdk-experimental/ui-patterns/behaviors/list/list.spec.ts
@@ -23,7 +23,7 @@ describe('List Behavior', () => {
23
function getList<V>(inputs: Partial<TestInputs<V>> & Pick<TestInputs<V>, 'items'>): TestList<V> {
24
return new List({
25
value: inputs.value ?? signal([]),
26
- activeItem: signal(null),
+ activeItem: signal(undefined),
27
typeaheadDelay: inputs.typeaheadDelay ?? signal(0.5),
28
wrap: inputs.wrap ?? signal(true),
29
disabled: inputs.disabled ?? signal(false),
0 commit comments