fix bug in Description blockquote cite

This commit is contained in:
Collin M. Barrett 2019-09-01 16:58:29 -05:00
parent 3cb2c45703
commit 23a7f0f141

View file

@ -7,5 +7,5 @@ interface Props {
export const Description = (props: Props) =>
props.description
? <blockquote cite={props.description}>{props.description}</blockquote>
? <blockquote cite={props.descriptionSourceUrl}>{props.description}</blockquote>
: <p>{props.description}</p>;