From f9ae48e23c7d99a5761f2a135c3969a81e1df430 Mon Sep 17 00:00:00 2001 From: smilerz Date: Tue, 15 Feb 2022 09:14:27 -0600 Subject: [PATCH] fix Vue cookedon sort --- vue/src/apps/RecipeSearchView/RecipeSearchView.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vue/src/apps/RecipeSearchView/RecipeSearchView.vue b/vue/src/apps/RecipeSearchView/RecipeSearchView.vue index bd8395883..5e300ef9c 100644 --- a/vue/src/apps/RecipeSearchView/RecipeSearchView.vue +++ b/vue/src/apps/RecipeSearchView/RecipeSearchView.vue @@ -847,7 +847,7 @@ export default { const field = [ [this.$t("search_rank"), "score", "1-9", "9-1"], [this.$t("Name"), "name", "A-z", "Z-a"], - [this.$t("last_cooked"), "cookedon", "↑", "↓"], + [this.$t("last_cooked"), "lastcooked", "↑", "↓"], [this.$t("Rating"), "rating", "1-5", "5-1"], [this.$t("times_cooked"), "favorite", "*-x", "x-*"], [this.$t("date_created"), "created_at", "↑", "↓"],