File tree Expand file tree Collapse file tree 2 files changed +10
-1
lines changed
Expand file tree Collapse file tree 2 files changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -52,6 +52,7 @@ const DataViewer = () => {
5252 maxBlocksInCache = { 10 }
5353 onGridReady = { onGridReady }
5454 rowModelType = "infinite"
55+ theme = "legacy"
5556 />
5657 </ div >
5758 ) ;
Original file line number Diff line number Diff line change 22// SPDX-License-Identifier: Apache-2.0
33import { useCallback , useEffect , useState } from "react" ;
44
5- import { ColDef , GridReadyEvent , IGetRowsParams } from "ag-grid-community" ;
5+ import {
6+ AllCommunityModule ,
7+ ColDef ,
8+ GridReadyEvent ,
9+ IGetRowsParams ,
10+ ModuleRegistry ,
11+ } from "ag-grid-community" ;
612import { v4 } from "uuid" ;
713
814import { TableData } from "../components/LibraryNavigator/types" ;
@@ -12,6 +18,8 @@ import columnHeaderTemplate from "./columnHeaderTemplate";
1218declare const acquireVsCodeApi ;
1319const vscode = acquireVsCodeApi ( ) ;
1420
21+ ModuleRegistry . registerModules ( [ AllCommunityModule ] ) ;
22+
1523const contextMenuHandler = ( e ) => {
1624 e . stopImmediatePropagation ( ) ;
1725} ;
You can’t perform that action at this time.
0 commit comments