mirror of
https://github.com/collinbarrett/FilterLists.git
synced 2026-03-11 09:04:27 +00:00
fix bug in Description blockquote cite
This commit is contained in:
parent
3cb2c45703
commit
23a7f0f141
1 changed files with 1 additions and 1 deletions
|
|
@ -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>;
|
||||
Loading…
Reference in a new issue