File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
packages/pluggableWidgets/datagrid-web/src/components Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ import {
1212import { RowSkeletonLoader } from "./loader/RowSkeletonLoader" ;
1313import { SpinnerLoader } from "./loader/SpinnerLoader" ;
1414
15- export function GridBody ( props : PropsWithChildren ) : ReactElement {
15+ export const GridBody = observer ( function GridBody ( props : PropsWithChildren ) : ReactElement {
1616 const { children } = props ;
1717 const { bodySize, containerRef, isInfinite, handleScroll } = useBodyScroll ( ) ;
1818
@@ -27,7 +27,7 @@ export function GridBody(props: PropsWithChildren): ReactElement {
2727 < ContentGuard > { children } </ ContentGuard >
2828 </ div >
2929 ) ;
30- }
30+ } ) ;
3131
3232const ContentGuard = observer ( function ContentGuard ( props : PropsWithChildren ) : ReactNode {
3333 const loaderVM = useLoaderViewModel ( ) ;
You can’t perform that action at this time.
0 commit comments