Skip to content

Commit

Permalink
fix: add quotes to indicate strings
Browse files Browse the repository at this point in the history
  • Loading branch information
polikashina committed Jun 10, 2024
1 parent 05233de commit e839ec9
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/components/Table/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -237,11 +237,11 @@ const MyTable1 = withTableSettings({sortable: false})(Table);

### Options

| Name | Description | Type | Default |
| :--------- | :-------------------------------------------------- | :------------: | :-----: |
| width | Settings' popup width | `number` `fit` | |
| sortable | Whether or not add ability to sort settings items | `boolean` | `true` |
| filterable | Whether or not add ability to filter settings items | `boolean` | `false` |
| Name | Description | Type | Default |
| :--------- | :-------------------------------------------------- | :--------------: | :-----: |
| width | Settings' popup width | `number` `"fit"` | |
| sortable | Whether or not add ability to sort settings items | `boolean` | `true` |
| filterable | Whether or not add ability to filter settings items | `boolean` | `false` |

### ColumnMeta

Expand All @@ -254,7 +254,7 @@ const MyTable1 = withTableSettings({sortable: false})(Table);

| Name | Description | Type |
| :------------------------- | :----------------------------------------------------------- | :------------------------------------------------------: |
| settingsPopupWidth | TableColumnSetup pop-up width | `number` `fit` |
| settingsPopupWidth | TableColumnSetup pop-up width | `number` `"fit"` |
| settings | Current settings | `TableSettingsData` |
| updateSettings | Settings update handle | `(data: TableSettingsData) => Promise<void>` |
| renderControls | Allows to render custom actions | `RenderControls` |
Expand Down

0 comments on commit e839ec9

Please sign in to comment.