From 7c2fc3b747bc5c8d0044fb15eba79d7896ee0eb5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Prunayre?= Date: Wed, 30 Aug 2023 12:19:59 +0200 Subject: [PATCH] RSS / Fix number of records parameter OGC API Record parameter for paging is `limit`. Follow up of https://github.com/geonetwork/core-geonetwork/pull/7094 --- web-ui/src/main/resources/catalog/js/CatController.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/web-ui/src/main/resources/catalog/js/CatController.js b/web-ui/src/main/resources/catalog/js/CatController.js index 305a27cb095..0b966ac1616 100644 --- a/web-ui/src/main/resources/catalog/js/CatController.js +++ b/web-ui/src/main/resources/catalog/js/CatController.js @@ -81,11 +81,11 @@ rssFeeds: [ { // List of rss feeds links to display when the OGC API Records service is enabled - url: "f=rss&sortby=-createDate&size=30", + url: "f=rss&sortby=-createDate&limit=30", label: "lastCreatedRecords" } // , { - // url: "f=rss&sortby=-publicationDateForResource&size=30", + // url: "f=rss&sortby=-publicationDateForResource&limit=30", // label: "lastPublishedRecords" // } ]