diff --git a/frontend/components/Domain/Recipe/RecipeExplorerPage.vue b/frontend/components/Domain/Recipe/RecipeExplorerPage.vue index 72c47cebbc6..9d7605bf9f9 100644 --- a/frontend/components/Domain/Recipe/RecipeExplorerPage.vue +++ b/frontend/components/Domain/Recipe/RecipeExplorerPage.vue @@ -67,12 +67,16 @@ - {{ $globals.icons.sort }} + {{ + state.orderDirection === "asc" ? + $globals.icons.sortDescending : $globals.icons.sortAscending + }} - {{ state.orderDirection === "asc" ? "Sort Descending" : "Sort Ascending" }} + {{ state.orderDirection === "asc" ? $tc("general.sort-descending") : $tc("general.sort-ascending") }} + - - {{ preferences.orderDirection === "asc" ? $globals.icons.sortCalendarAscending : $globals.icons.sortCalendarDescending }} - + + + + + + + + {{ + preferences.orderDirection === "asc" ? + $globals.icons.sortCalendarDescending : $globals.icons.sortCalendarAscending + }} + + + {{ preferences.orderDirection === "asc" ? $tc("general.sort-descending") : $tc("general.sort-ascending") }} + + + + + + + + + + + + + + + @@ -29,9 +73,9 @@ /> - + - {{ $t("recipe.timeline-is-empty") }} + {{ $t("recipe.timeline-no-events-found-try-adjusting-filters") }}
@@ -41,14 +85,15 @@