From e8a3494a2f5f53d3547032af9f89e247d07e0607 Mon Sep 17 00:00:00 2001 From: Olga Polikashina Date: Mon, 10 Jun 2024 16:42:17 +0300 Subject: [PATCH] fix: add quotes to indicate strings --- src/components/Table/README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/components/Table/README.md b/src/components/Table/README.md index ed229b35a7..a3cca23474 100644 --- a/src/components/Table/README.md +++ b/src/components/Table/README.md @@ -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 @@ -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` | | renderControls | Allows to render custom actions | `RenderControls` |