Skip to content

Commit 3df6ffe

Browse files
authored
fix: incorrect table type in ag grid plugin (#1151)
Fixed type that was failing https://github.com/deephaven/deephaven-plugins/actions/runs/14093526373/job/39475806319?pr=1126
1 parent e7ac088 commit 3df6ffe

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

plugins/ag-grid/src/js/src/AgGridWidget.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,8 @@ export function AgGridWidget(
2525
async function init() {
2626
log.debug('Fetching widget');
2727
const widget: DhType.Widget = await fetch();
28-
const newTable = (await widget.exportedObjects[0].fetch()) as Table;
28+
const newTable =
29+
(await widget.exportedObjects[0].fetch()) as DhType.Table;
2930
if (!cancelled) {
3031
log.info('AgGridView loaded table', newTable);
3132
setTable(newTable);

0 commit comments

Comments
 (0)