fix: make recipe ingredinets interactive
This commit is contained in:
@@ -24,10 +24,10 @@ export default async function Greet(
|
||||
return ctx.renderNotFound();
|
||||
}
|
||||
|
||||
const { author = "", datePublished = "" } = movie.content;
|
||||
const { author = "", datePublished = "",reviewBody } = movie.content;
|
||||
|
||||
const content = renderMarkdown(
|
||||
removeImage(movie.content.reviewBody || "", movie.content.image),
|
||||
removeImage(reviewBody || "", movie.content.image),
|
||||
);
|
||||
|
||||
return (
|
||||
@@ -57,7 +57,7 @@ export default async function Greet(
|
||||
title: author?.name,
|
||||
href: `/?q=${encodeURIComponent(author?.name)}`,
|
||||
},
|
||||
datePublished.toString(),
|
||||
date.toString(),
|
||||
]}
|
||||
>
|
||||
{movie.content.reviewRating && (
|
||||
|
||||
Reference in New Issue
Block a user