From abc55888fa4bcad0e166c4d6e56252f8c7404987 Mon Sep 17 00:00:00 2001 From: Shemilt Date: Tue, 31 Mar 2026 14:17:12 +0100 Subject: [PATCH 1/3] adding navigation to the new dashboard description pages and removing the broken page from docs --- .github/mkdocs/mkdocs.yaml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/mkdocs/mkdocs.yaml b/.github/mkdocs/mkdocs.yaml index 602a8e2..bc4d3d0 100644 --- a/.github/mkdocs/mkdocs.yaml +++ b/.github/mkdocs/mkdocs.yaml @@ -8,12 +8,14 @@ nav: - Login: - login/index.md - Anonymous: login/Anonymous.md - - Dashboard: login/Dashboard.md - Datasets: - datasets/index.md - Publishing data: datasets/Publishing.md - Publishing data Advanced: datasets/PublishingAdvanced.md - - Data Retrieval: datasets/jobs.md + - Data Retrieval: datasets/jobs.md + - Dashboard: + - Search and Filter: datasets/DashboardDatasetsFiltering.md + - Configure Dataset Table: datasets/dashboardTableEditing.md - Proposals: - proposals/index.md - Samples: samples/index.md From 5fde8498212d6c8c19fce2f19e7704c00c1e4f1c Mon Sep 17 00:00:00 2001 From: Shemilt Date: Tue, 31 Mar 2026 15:09:51 +0100 Subject: [PATCH 2/3] changing mkdocs.yaml to mkdocs.yml so that it gets picked up by the gh-pages workflow --- .github/mkdocs/{mkdocs.yaml => mkdocs.yml} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename .github/mkdocs/{mkdocs.yaml => mkdocs.yml} (100%) diff --git a/.github/mkdocs/mkdocs.yaml b/.github/mkdocs/mkdocs.yml similarity index 100% rename from .github/mkdocs/mkdocs.yaml rename to .github/mkdocs/mkdocs.yml From d49df9f573bf74a1c4801d2a188bbaa0f156190a Mon Sep 17 00:00:00 2001 From: Emil Gunnarsson Date: Thu, 2 Apr 2026 10:12:27 +0200 Subject: [PATCH 3/3] add editable column type --- docs/frontendconfig/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/frontendconfig/index.md b/docs/frontendconfig/index.md index 9cc1cc6..1cfeff2 100644 --- a/docs/frontendconfig/index.md +++ b/docs/frontendconfig/index.md @@ -27,7 +27,7 @@ Defines how each field is displayed in the list table. | ------------ | --------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------- | | `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`) | `"date"` | +| `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` |