diff --git a/vue/src/apps/RecipeSearchView/RecipeSearchView.vue b/vue/src/apps/RecipeSearchView/RecipeSearchView.vue index 8dda3ad35..269b9d651 100644 --- a/vue/src/apps/RecipeSearchView/RecipeSearchView.vue +++ b/vue/src/apps/RecipeSearchView/RecipeSearchView.vue @@ -58,7 +58,10 @@
- {{ $t("expert_mode") }} + +
{{ $t("expert_mode") }}
+
{{ $t("simple_mode") }}
+
@@ -299,6 +302,7 @@ +
i'm an expert!
@@ -417,6 +421,9 @@ export default { { id: 0, label: this.$t("Unrated") + ratingCount(this.facets.Ratings?.["0.0"] ?? 0) }, ] }, + expertMode: function () { + return this.ui.enable_expert && this.search.expert_mode + }, }, mounted() { this.$nextTick(function () { diff --git a/vue/src/locales/en.json b/vue/src/locales/en.json index c0ce9c9bf..527bd3a3b 100644 --- a/vue/src/locales/en.json +++ b/vue/src/locales/en.json @@ -299,6 +299,7 @@ "view_recipe": "View Recipe", "enable_expert": "Enable Export Mode", "expert_mode": "Expert Mode", + "simple_mode": "Simple Mode", "advanced": "Advanced", "fields": "Fields", "show_keywords": "Show Keywords",