diff --git a/docs/frontendconfig/index.md b/docs/frontendconfig/index.md
index 1cfeff2..e646284 100644
--- a/docs/frontendconfig/index.md
+++ b/docs/frontendconfig/index.md
@@ -25,12 +25,13 @@ Defines how each field is displayed in the list table.
| **Property** | **Type** | **Description** | **Example / Notes** |
| ------------ | --------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------- |
-| `name` | `string` | Object key whose value will be displayed in the column. | `"datasetName"` |
-| `order` | `number` | Position of the column in the table. | `2` |
-| `type` | `string` | How the value is rendered:
• `standard` – plain text (default)
• `hoverContent` – shows icon with popup/modal when mouseover (for long text)
• `date` – formats ISO date strings; can include a `format` (e.g. `yyyy-MM-dd`)
• `editable` – plain text and editable by clicking on cell if user has permission | `"date"` |
-| `width` | `number` | Default width of the column. | `200` |
-| `format` | `string` | Optional property used **only** when `type` is set to `date`. Defines how ISO date strings are displayed (e.g. `yyyy-MM-dd`).
it fallsback to `dateFormat` or `yyyy-MM-dd HH:mm` for dataset and `yyyy-MM-dd` for proposal | `"yyyy-MM-dd"` |
-| `enabled` | `boolean` | Whether the column is displayed by default. | `true` |
+| `name` | `string` | Object key whose value will be displayed in the column. | `"datasetName"` |
+| `header` | `string` | Display label for the column, used in the UI and exports. | `"Dataset Name"` |
+| `order` | `number` | Position of the column in the table. | `2` |
+| `type` | `string` | How the value is rendered:
• `standard` – plain text (default)
• `hoverContent` – shows icon with popup/modal when mouseover (for long text)
• `date` – formats ISO date strings; can include a `format` (e.g. `yyyy-MM-dd`)
• `editable` – plain text and editable by clicking on cell if user has permission | `"date"` |
+| `width` | `number` | Default width of the column. | `200` |
+| `format` | `string` | Optional property used **only** when `type` is set to `date`. Defines how ISO date strings are displayed (e.g. `yyyy-MM-dd`).
It fallsback to `dateFormat` or `yyyy-MM-dd HH:mm` for dataset and `yyyy-MM-dd` for proposal. | `"yyyy-MM-dd"` |
+| `enabled` | `boolean` | Whether the column is displayed by default. | `true` |
---