瀏覽代碼

update buttons and translations (forgot something)

Ramona Plogmann 4 年之前
父節點
當前提交
171b6d7153
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      client/src/components/Meals/MealDetailView.jsx

+ 1 - 1
client/src/components/Meals/MealDetailView.jsx

@@ -74,7 +74,7 @@ const MealDetailView = (props) => {
                 <Typography variant="h4">{meal.title}</Typography>
               </Grid>
               <Grid item xs className={classes.shareButton}>
-                <ShareButton link={window.location.origin + '/meals/view/' + meal._id} title={meal.title} />
+                <ShareButton link={window.location.origin + '/meals/view/' + meal._id} title={meal.title} text={t('Check out the following meal: {{mealTitle}}', meal.title)} />
               </Grid>
             </Grid>
             {meal.recipeLink ? <Typography><Link href={meal.recipeLink} target="_blank">{meal.recipeLink}</Link></Typography> : ''}