Skip to content

Commit

Permalink
Fix #6881: TreeTable onResizeEnd incorrect column value (#6886)
Browse files Browse the repository at this point in the history
  • Loading branch information
melloware authored Jul 14, 2024
1 parent d053ad4 commit 0227deb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions components/lib/treetable/treetable.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
*/
import * as React from 'react';
import { CSSProperties } from 'react';
import { ColumnProps } from '../column';
import { Column } from '../column';
import { ComponentHooks } from '../componentbase/componentbase';
import { InputTextPassThroughOptions } from '../inputtext/inputtext';
import { PaginatorPassThroughOptions, PaginatorTemplate } from '../paginator';
Expand Down Expand Up @@ -530,7 +530,7 @@ interface TreeTableColumnResizeEndEvent {
/**
* Properties of the resized column.
*/
column: ColumnProps;
column: Column;
/**
* Change in column width.
*/
Expand Down

0 comments on commit 0227deb

Please sign in to comment.