diff --git a/packages/react-table/src/components/Table/Td.tsx b/packages/react-table/src/components/Table/Td.tsx index f932a6b9284..a6680cca85a 100644 --- a/packages/react-table/src/components/Table/Td.tsx +++ b/packages/react-table/src/components/Table/Td.tsx @@ -158,7 +158,7 @@ const TdBase: React.FunctionComponent = ({ ? actionParamsFunc(null, { rowIndex: actions?.rowIndex, rowData: { - disableActions: actions?.disable + disableActions: actions?.isDisabled }, column: { extraParams: { diff --git a/packages/react-table/src/components/Table/base/types.tsx b/packages/react-table/src/components/Table/base/types.tsx index 5419e18d2fd..ab43e4c06a9 100644 --- a/packages/react-table/src/components/Table/base/types.tsx +++ b/packages/react-table/src/components/Table/base/types.tsx @@ -58,8 +58,8 @@ export interface TdActionsType { rowIndex?: number; /** Cell actions */ items: IActions; - /** Whether to disable the actions */ - disable?: boolean; + /** Whether the actions are disabled */ + isDisabled?: boolean; /** Actions dropdown position */ dropdownPosition?: DropdownPosition; /** Actions dropdown direction */