Skip to content

Commit

Permalink
fix: adopt AG Grid 33
Browse files Browse the repository at this point in the history
  • Loading branch information
scnwwu committed Dec 19, 2024
1 parent b406018 commit 1be192c
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
1 change: 1 addition & 0 deletions client/src/webview/DataViewer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ const DataViewer = () => {
maxBlocksInCache={10}
onGridReady={onGridReady}
rowModelType="infinite"
theme="legacy"
/>
</div>
);
Expand Down
10 changes: 9 additions & 1 deletion client/src/webview/useDataViewer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,13 @@
// SPDX-License-Identifier: Apache-2.0
import { useCallback, useEffect, useState } from "react";

import { ColDef, GridReadyEvent, IGetRowsParams } from "ag-grid-community";
import {
AllCommunityModule,
ColDef,
GridReadyEvent,
IGetRowsParams,
ModuleRegistry,
} from "ag-grid-community";
import { v4 } from "uuid";

import { TableData } from "../components/LibraryNavigator/types";
Expand All @@ -12,6 +18,8 @@ import columnHeaderTemplate from "./columnHeaderTemplate";
declare const acquireVsCodeApi;
const vscode = acquireVsCodeApi();

ModuleRegistry.registerModules([AllCommunityModule]);

const contextMenuHandler = (e) => {
e.stopImmediatePropagation();
};
Expand Down

0 comments on commit 1be192c

Please sign in to comment.