From ec27abfb819e5e194e27420292ca1195fd002c74 Mon Sep 17 00:00:00 2001 From: Will Martin Date: Mon, 19 May 2025 15:15:15 -0400 Subject: [PATCH] [UIF] add missing directive import to virtual scroll table (#14846) --- libs/components/src/table/table-scroll.component.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libs/components/src/table/table-scroll.component.ts b/libs/components/src/table/table-scroll.component.ts index 9d81e3ffe8..e01bf168cb 100644 --- a/libs/components/src/table/table-scroll.component.ts +++ b/libs/components/src/table/table-scroll.component.ts @@ -4,6 +4,7 @@ import { CdkVirtualScrollViewport, CdkFixedSizeVirtualScroll, CdkVirtualForOf, + CdkVirtualScrollableWindow, } from "@angular/cdk/scrolling"; import { CommonModule } from "@angular/common"; import { @@ -53,6 +54,7 @@ export class BitRowDef { imports: [ CommonModule, CdkVirtualScrollViewport, + CdkVirtualScrollableWindow, CdkFixedSizeVirtualScroll, CdkVirtualForOf, RowDirective,