From fbc3e272b2912d43eb38383a5705fdc1549a45a5 Mon Sep 17 00:00:00 2001 From: Tom Morrell Date: Mon, 29 Jan 2024 10:26:44 -0800 Subject: [PATCH] Update sort options and label --- invenio.cfg | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/invenio.cfg b/invenio.cfg index 3062235..147a2a4 100644 --- a/invenio.cfg +++ b/invenio.cfg @@ -257,11 +257,11 @@ SEARCH_INDEX_PREFIX = "caltechauthors-" from invenio_rdm_records.config import RDM_SORT_OPTIONS RDM_SORT_OPTIONS.update({ "publication": dict( - title=_('Publication Date'), + title=_('Publication date'), fields=['-metadata.publication_date'], ), "newest": dict( - title=_("Recently Added"), + title=_("Recently added"), fields=["-created"], ), })