Skip to content

Commit 5c75bbe

Browse files
authoredJan 3, 2025··
fix(cdk/scrolling): avoid SSR error in CdkVirtualScrollableWindow (#30259)
The `CdkVirtualScrollableWindow` was referring to the `document` directly which can break in SSR. These changes use the DI token instead.
1 parent 4e04540 commit 5c75bbe

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed
 

‎src/cdk/scrolling/virtual-scrollable-window.ts

+3-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@
66
* found in the LICENSE file at https://angular.dev/license
77
*/
88

9-
import {Directive, ElementRef} from '@angular/core';
9+
import {Directive, ElementRef, inject} from '@angular/core';
10+
import {DOCUMENT} from '@angular/common';
1011
import {CdkVirtualScrollable, VIRTUAL_SCROLLABLE} from './virtual-scrollable';
1112

1213
/**
@@ -21,6 +22,7 @@ export class CdkVirtualScrollableWindow extends CdkVirtualScrollable {
2122

2223
constructor() {
2324
super();
25+
const document = inject(DOCUMENT);
2426
this.elementRef = new ElementRef(document.documentElement);
2527
this._scrollElement = document;
2628
}

0 commit comments

Comments
 (0)
Please sign in to comment.