diff --git a/front/components/Recipes/SearchRecipe.vue b/front/components/Recipes/SearchRecipe.vue index 1ceda16..c0e7b35 100644 --- a/front/components/Recipes/SearchRecipe.vue +++ b/front/components/Recipes/SearchRecipe.vue @@ -35,6 +35,15 @@ title: 'Opis', key: 'description' }, + { + title: 'Kalorie', + key: 'kcal', + render: (h, params) => { + return h('div', [ + h('span', params.row.nutrition.kcal) + ]); + }, + }, { title: 'Akcje', key: 'action',