mirror of
				https://github.com/mealie-recipes/mealie.git
				synced 2025-10-31 10:13:32 -04:00 
			
		
		
		
	fix: recipe rating display (#1779)
* remove rating from recipe title * fixed rating not rendering on landscape mode
This commit is contained in:
		| @@ -4,7 +4,7 @@ | ||||
|       <v-card v-if="!landscape" width="50%" flat class="d-flex flex-column justify-center align-center"> | ||||
|         <v-card-text> | ||||
|           <v-card-title class="headline pa-0 flex-column align-center"> | ||||
|             {{ recipe.name }} {{ recipe.rating }} | ||||
|             {{ recipe.name }} | ||||
|             <RecipeRating :key="recipe.slug" v-model="recipe.rating" :name="recipe.name" :slug="recipe.slug" /> | ||||
|           </v-card-title> | ||||
|           <v-divider class="my-2"></v-divider> | ||||
|   | ||||
| @@ -19,7 +19,7 @@ | ||||
|     <RecipeRating | ||||
|       v-if="landscape && $vuetify.breakpoint.smAndUp" | ||||
|       :key="recipe.slug" | ||||
|       :v-model="recipe.rating" | ||||
|       v-model="recipe.rating" | ||||
|       :name="recipe.name" | ||||
|       :slug="recipe.slug" | ||||
|     /> | ||||
|   | ||||
		Reference in New Issue
	
	Block a user