From eb66f3f7d2a64aee9fd399ffbbb25dc225a7f1e9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Ad=C3=A1mek?= Date: Wed, 13 Nov 2024 13:58:03 +0100 Subject: [PATCH 1/3] fix: fix API link to "Get list of datasets" --- sources/platform/storage/dataset.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sources/platform/storage/dataset.md b/sources/platform/storage/dataset.md index bf79cf44b7..ae8ac4b359 100644 --- a/sources/platform/storage/dataset.md +++ b/sources/platform/storage/dataset.md @@ -57,7 +57,7 @@ If you are accessing your datasets using the `username~store-name` [store ID for > When providing your API authentication token, we recommend using the request's `Authorization` header, rather than the URL. ([More info](../integrations/programming/api.md#authentication)). -To retrieve a list of your datasets, send a GET request to the [Get list of datasets](/api/v2#/reference/datasets/get-list-of-datasets) endpoint. +To retrieve a list of your datasets, send a GET request to the [Get list of datasets](/api/v2#/reference/datasets/dataset-collection/get-list-of-datasets) endpoint. ```text https://api.apify.com/v2/datasets From e0b869ebdc72e4db08b6305f5dd673d93779f43b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Ad=C3=A1mek?= Date: Wed, 13 Nov 2024 14:08:06 +0100 Subject: [PATCH 2/3] fix position of old anchors in api docs --- apify-docs-theme/src/theme/custom.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/apify-docs-theme/src/theme/custom.css b/apify-docs-theme/src/theme/custom.css index 36bde82280..11555f1384 100644 --- a/apify-docs-theme/src/theme/custom.css +++ b/apify-docs-theme/src/theme/custom.css @@ -1609,3 +1609,8 @@ iframe[src*="youtube"] { height: auto; margin-bottom: 1.6rem; } + +div[data-section-id] span[id] { + margin-top: -130px; + position: absolute; +} From c8db7c6134cf1cd96a6a9276a74b02d58ed43ab1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Ad=C3=A1mek?= Date: Wed, 13 Nov 2024 14:33:01 +0100 Subject: [PATCH 3/3] ensure no collisions of the selector --- apify-docs-theme/src/theme/custom.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apify-docs-theme/src/theme/custom.css b/apify-docs-theme/src/theme/custom.css index 11555f1384..3268ddcf93 100644 --- a/apify-docs-theme/src/theme/custom.css +++ b/apify-docs-theme/src/theme/custom.css @@ -1610,7 +1610,7 @@ iframe[src*="youtube"] { margin-bottom: 1.6rem; } -div[data-section-id] span[id] { +.redocusaurus div[data-section-id] span[id] { margin-top: -130px; position: absolute; }