Skip to content

Commit

Permalink
update sort order
Browse files Browse the repository at this point in the history
  • Loading branch information
mfenner committed Oct 24, 2024
1 parent b94f947 commit 9884488
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
7 changes: 7 additions & 0 deletions fly.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,13 @@ primary_region = 'fra'
min_machines_running = 1
processes = ['web']

# [[http_service.checks]]
# grace_period = "10s"
# interval = "30s"
# method = "GET"
# timeout = "5s"
# path = "/"

[[vm]]
memory = '2gb'
cpu_kind = 'shared'
Expand Down
4 changes: 2 additions & 2 deletions invenio.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -347,11 +347,11 @@ RDM_SORT_OPTIONS = {
),
"newest": dict(
title=_('Newest'),
fields=['-metadata.publication_date', '-updated'],
fields=['-metadata.publication_date', '-created'],
),
"oldest": dict(
title=_('Oldest'),
fields=['metadata.publication_date', 'updated'],
fields=['metadata.publication_date', 'created'],
),
"version": dict(
title=_("Version"),
Expand Down

0 comments on commit 9884488

Please sign in to comment.