Skip to content

Commit f86804e

Browse files
committed
typo
1 parent b4b9238 commit f86804e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/main/src/components/AnalyticalTable/AnalyticalTable.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ const TableComp = () => {
105105
| `cellLabel` | `({cell, instance}) => string` | Defines a function that receives an object as a parameter, including the cell and table instance, and should return the `aria-label` of the current cell. <br /><br />**Note:** Use this property if there is no textual content available through the dataset (e.g. no `accessor` field available), or if you want to provide additional context when navigating to the respective cell for screen readers.<br /><br />**Note:** To retrieve the internal `aria-label`, utilize the `cell.cellLabel` property. |
106106
| `width` | `number` | Defines the column width. If not set, the table will distribute all columns without a width evenly.<br />**Note:** Undercutting the `minWidth` value is not supported! |
107107
| `minWidth` | `number` | Minimum width of the column.<br />**Default:** `60` |
108-
| `maxWidth` | `number` | Maximum with of the column. |
108+
| `maxWidth` | `number` | Maximum width of the column. |
109109
| `Filter` | `ComponentType` | Filter Component to be rendered in the Header |
110110
| `disableFilters` | `boolean` | Disable filters for this column |
111111
| `disableGlobalFilter` | `boolean` | Disable global filtering for this column |

packages/main/src/components/AnalyticalTable/types/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -430,7 +430,7 @@ export interface AnalyticalTableColumnDefinition {
430430
*/
431431
minWidth?: number;
432432
/**
433-
* Maximum with of the column.
433+
* Maximum width of the column.
434434
*/
435435
maxWidth?: number;
436436
/**

0 commit comments

Comments
 (0)