mirror of
				https://github.com/mealie-recipes/mealie.git
				synced 2025-10-27 08:14:30 -04:00 
			
		
		
		
	Feature/restore-recipe-functionality (#810)
* feat(frontend): ✨ add back support for assets * feat(backend): ✨ add back support for assets * feat(frontend): ✨ add support for recipe tools * feat(backend): ✨ add support for recipe tools * feat(frontend): ✨ add onHand support for recipe toosl * feat(backend): ✨ add onHand support for backend * refactor(frontend): ♻️ move items to recipe folder and break apart types * feat(frontend): ✨ add support for recipe comments * feat(backend): ✨ Add support for recipe comments * fix(backend): 💥 disable comments import * fix(frontend): 🐛 fix rendering issue with titles when moving steps * add tools to changelog * fix type errors Co-authored-by: hay-kot <hay-kot@pm.me>
This commit is contained in:
		| @@ -1,10 +1,10 @@ | ||||
| <template> | ||||
|   <div v-if="valueNotNull || edit"> | ||||
|     <v-card class="mt-2"> | ||||
|       <v-card-title class="py-2"> | ||||
|       <v-card-title class="pt-2 pb-0"> | ||||
|         {{ $t("recipe.nutrition") }} | ||||
|       </v-card-title> | ||||
|       <v-divider class="mx-2"></v-divider> | ||||
|       <v-divider class="mx-2 my-1"></v-divider> | ||||
|       <v-card-text v-if="edit"> | ||||
|         <div v-for="(item, key, index) in value" :key="index"> | ||||
|           <v-text-field | ||||
| @@ -19,9 +19,9 @@ | ||||
|         </div> | ||||
|       </v-card-text> | ||||
|       <v-list v-if="showViewer" dense class="mt-0 pt-0"> | ||||
|         <v-list-item v-for="(item, key, index) in labels" :key="index"> | ||||
|         <v-list-item v-for="(item, key, index) in labels" :key="index" style="min-height: 25px" dense> | ||||
|           <v-list-item-content> | ||||
|             <v-list-item-title class="pl-4 text-subtitle-1 flex row"> | ||||
|             <v-list-item-title class="pl-4 caption flex row"> | ||||
|               <div>{{ item.label }}</div> | ||||
|               <div class="ml-auto mr-1">{{ value[key] }}</div> | ||||
|               <div>{{ item.suffix }}</div> | ||||
|   | ||||
		Reference in New Issue
	
	Block a user