From 23d88549fe4b2df1d6d202c2637fe14b930d2e83 Mon Sep 17 00:00:00 2001 From: Christian Beutel <> Date: Sat, 13 Apr 2024 22:04:16 +0200 Subject: [PATCH] adds sort for trail date --- web/src/lib/components/trail/trail_list.svelte | 1 + 1 file changed, 1 insertion(+) diff --git a/web/src/lib/components/trail/trail_list.svelte b/web/src/lib/components/trail/trail_list.svelte index ede53b00..458becee 100644 --- a/web/src/lib/components/trail/trail_list.svelte +++ b/web/src/lib/components/trail/trail_list.svelte @@ -27,6 +27,7 @@ const sortOptions: SelectItem[] = [ { text: $_("alphabetical"), value: "name" }, { text: $_("creation-date"), value: "created" }, + { text: $_("date"), value: "date" }, { text: $_("difficulty"), value: "difficulty" }, { text: $_("distance"), value: "distance" }, { text: $_("elevation-gain"), value: "elevation_gain" },